tcp.rs 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928
  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.
  3. use core::{cmp, fmt};
  4. use managed::Managed;
  5. use {Error, Result};
  6. use phy::DeviceLimits;
  7. use wire::{IpProtocol, IpAddress, IpEndpoint, TcpSeqNumber, TcpRepr, TcpControl};
  8. use socket::{Socket, IpRepr};
  9. use storage::RingBuffer;
  10. pub type SocketBuffer<'a> = RingBuffer<'a, u8>;
  11. /// The state of a TCP socket, according to [RFC 793][rfc793].
  12. /// [rfc793]: https://tools.ietf.org/html/rfc793
  13. #[derive(Debug, PartialEq, Eq, Clone, Copy)]
  14. pub enum State {
  15. Closed,
  16. Listen,
  17. SynSent,
  18. SynReceived,
  19. Established,
  20. FinWait1,
  21. FinWait2,
  22. CloseWait,
  23. Closing,
  24. LastAck,
  25. TimeWait
  26. }
  27. impl fmt::Display for State {
  28. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
  29. match self {
  30. &State::Closed => write!(f, "CLOSED"),
  31. &State::Listen => write!(f, "LISTEN"),
  32. &State::SynSent => write!(f, "SYN-SENT"),
  33. &State::SynReceived => write!(f, "SYN-RECEIVED"),
  34. &State::Established => write!(f, "ESTABLISHED"),
  35. &State::FinWait1 => write!(f, "FIN-WAIT-1"),
  36. &State::FinWait2 => write!(f, "FIN-WAIT-2"),
  37. &State::CloseWait => write!(f, "CLOSE-WAIT"),
  38. &State::Closing => write!(f, "CLOSING"),
  39. &State::LastAck => write!(f, "LAST-ACK"),
  40. &State::TimeWait => write!(f, "TIME-WAIT")
  41. }
  42. }
  43. }
  44. #[derive(Debug, Clone, Copy, PartialEq)]
  45. enum Timer {
  46. Idle,
  47. Retransmit {
  48. expires_at: u64,
  49. delay: u64
  50. },
  51. Close {
  52. expires_at: u64
  53. }
  54. }
  55. const RETRANSMIT_DELAY: u64 = 100;
  56. const CLOSE_DELAY: u64 = 10_000;
  57. impl Timer {
  58. fn should_retransmit(&self, timestamp: u64) -> Option<u64> {
  59. match *self {
  60. Timer::Retransmit { expires_at, delay }
  61. if timestamp >= expires_at => {
  62. Some(timestamp - expires_at + delay)
  63. }
  64. _ => None
  65. }
  66. }
  67. fn should_close(&self, timestamp: u64) -> bool {
  68. match *self {
  69. Timer::Close { expires_at }
  70. if timestamp >= expires_at => {
  71. true
  72. }
  73. _ => false
  74. }
  75. }
  76. fn poll_at(&self) -> Option<u64> {
  77. match *self {
  78. Timer::Idle => None,
  79. Timer::Retransmit { expires_at, .. } => Some(expires_at),
  80. Timer::Close { expires_at, .. } => Some(expires_at),
  81. }
  82. }
  83. fn reset(&mut self) {
  84. *self = Timer::Idle
  85. }
  86. fn set_for_retransmit(&mut self, timestamp: u64) {
  87. match *self {
  88. Timer::Idle => {
  89. *self = Timer::Retransmit {
  90. expires_at: timestamp + RETRANSMIT_DELAY,
  91. delay: RETRANSMIT_DELAY,
  92. }
  93. }
  94. Timer::Retransmit { expires_at, delay }
  95. if timestamp >= expires_at => {
  96. *self = Timer::Retransmit {
  97. expires_at: timestamp + delay,
  98. delay: delay * 2
  99. }
  100. }
  101. Timer::Retransmit { .. } => (),
  102. Timer::Close { .. } => ()
  103. }
  104. }
  105. fn set_for_close(&mut self, timestamp: u64) {
  106. *self = Timer::Close {
  107. expires_at: timestamp + CLOSE_DELAY
  108. }
  109. }
  110. }
  111. /// A Transmission Control Protocol socket.
  112. ///
  113. /// A TCP socket may passively listen for connections or actively connect to another endpoint.
  114. /// Note that, for listening sockets, there is no "backlog"; to be able to simultaneously
  115. /// accept several connections, as many sockets must be allocated, or any new connection
  116. /// attempts will be reset.
  117. #[derive(Debug)]
  118. pub struct TcpSocket<'a> {
  119. debug_id: usize,
  120. state: State,
  121. timer: Timer,
  122. rx_buffer: SocketBuffer<'a>,
  123. tx_buffer: SocketBuffer<'a>,
  124. /// Address passed to listen(). Listen address is set when listen() is called and
  125. /// used every time the socket is reset back to the LISTEN state.
  126. listen_address: IpAddress,
  127. /// Current local endpoint. This is used for both filtering the incoming packets and
  128. /// setting the source address. When listening or initiating connection on/from
  129. /// an unspecified address, this field is updated with the chosen source address before
  130. /// any packets are sent.
  131. local_endpoint: IpEndpoint,
  132. /// Current remote endpoint. This is used for both filtering the incoming packets and
  133. /// setting the destination address. If the remote endpoint is unspecified, it means that
  134. /// aborting the connection will not send an RST, and, in TIME-WAIT state, will not
  135. /// send an ACK.
  136. remote_endpoint: IpEndpoint,
  137. /// The sequence number corresponding to the beginning of the transmit buffer.
  138. /// I.e. an ACK(local_seq_no+n) packet removes n bytes from the transmit buffer.
  139. local_seq_no: TcpSeqNumber,
  140. /// The sequence number corresponding to the beginning of the receive buffer.
  141. /// I.e. userspace reading n bytes adds n to remote_seq_no.
  142. remote_seq_no: TcpSeqNumber,
  143. /// The last sequence number sent.
  144. /// I.e. in an idle socket, local_seq_no+tx_buffer.len().
  145. remote_last_seq: TcpSeqNumber,
  146. /// The last acknowledgement number sent.
  147. /// I.e. in an idle socket, remote_seq_no+rx_buffer.len().
  148. remote_last_ack: Option<TcpSeqNumber>,
  149. /// The last window length sent.
  150. remote_last_win: u16,
  151. /// The speculative remote window size.
  152. /// I.e. the actual remote window size minus the count of in-flight octets.
  153. remote_win_len: usize,
  154. /// The maximum number of data octets that the remote side may receive.
  155. remote_mss: usize,
  156. }
  157. const DEFAULT_MSS: usize = 536;
  158. impl<'a> TcpSocket<'a> {
  159. /// Create a socket using the given buffers.
  160. pub fn new<T>(rx_buffer: T, tx_buffer: T) -> Socket<'a, 'static>
  161. where T: Into<SocketBuffer<'a>> {
  162. let rx_buffer = rx_buffer.into();
  163. if rx_buffer.capacity() > <u16>::max_value() as usize {
  164. panic!("buffers larger than {} require window scaling, which is not implemented",
  165. <u16>::max_value())
  166. }
  167. Socket::Tcp(TcpSocket {
  168. debug_id: 0,
  169. state: State::Closed,
  170. timer: Timer::Idle,
  171. tx_buffer: tx_buffer.into(),
  172. rx_buffer: rx_buffer.into(),
  173. listen_address: IpAddress::default(),
  174. local_endpoint: IpEndpoint::default(),
  175. remote_endpoint: IpEndpoint::default(),
  176. local_seq_no: TcpSeqNumber::default(),
  177. remote_seq_no: TcpSeqNumber::default(),
  178. remote_last_seq: TcpSeqNumber::default(),
  179. remote_last_ack: None,
  180. remote_last_win: 0,
  181. remote_win_len: 0,
  182. remote_mss: DEFAULT_MSS,
  183. })
  184. }
  185. /// Return the debug identifier.
  186. #[inline]
  187. pub fn debug_id(&self) -> usize {
  188. self.debug_id
  189. }
  190. /// Set the debug identifier.
  191. ///
  192. /// The debug identifier is a number printed in socket trace messages.
  193. /// It could as well be used by the user code.
  194. pub fn set_debug_id(&mut self, id: usize) {
  195. self.debug_id = id
  196. }
  197. /// Return the local endpoint.
  198. #[inline]
  199. pub fn local_endpoint(&self) -> IpEndpoint {
  200. self.local_endpoint
  201. }
  202. /// Return the remote endpoint.
  203. #[inline]
  204. pub fn remote_endpoint(&self) -> IpEndpoint {
  205. self.remote_endpoint
  206. }
  207. /// Return the connection state, in terms of the TCP state machine.
  208. #[inline]
  209. pub fn state(&self) -> State {
  210. self.state
  211. }
  212. fn reset(&mut self) {
  213. self.state = State::Closed;
  214. self.listen_address = IpAddress::default();
  215. self.local_endpoint = IpEndpoint::default();
  216. self.remote_endpoint = IpEndpoint::default();
  217. self.local_seq_no = TcpSeqNumber::default();
  218. self.remote_seq_no = TcpSeqNumber::default();
  219. self.remote_last_seq = TcpSeqNumber::default();
  220. self.remote_last_ack = None;
  221. self.remote_last_win = 0;
  222. self.remote_win_len = 0;
  223. self.remote_mss = DEFAULT_MSS;
  224. self.timer.reset();
  225. self.tx_buffer.clear();
  226. self.rx_buffer.clear();
  227. }
  228. /// Start listening on the given endpoint.
  229. ///
  230. /// This function returns `Err(Error::Illegal)` if the socket was already open
  231. /// (see [is_open](#method.is_open)), and `Err(Error::Unaddressable)`
  232. /// if the port in the given endpoint is zero.
  233. pub fn listen<T>(&mut self, local_endpoint: T) -> Result<()>
  234. where T: Into<IpEndpoint> {
  235. let local_endpoint = local_endpoint.into();
  236. if local_endpoint.port == 0 { return Err(Error::Unaddressable) }
  237. if self.is_open() { return Err(Error::Illegal) }
  238. self.reset();
  239. self.listen_address = local_endpoint.addr;
  240. self.local_endpoint = local_endpoint;
  241. self.remote_endpoint = IpEndpoint::default();
  242. self.set_state(State::Listen);
  243. Ok(())
  244. }
  245. /// Connect to a given endpoint.
  246. ///
  247. /// The local port must be provided explicitly. Assuming `fn get_ephemeral_port() -> u16`
  248. /// allocates a port between 49152 and 65535, a connection may be established as follows:
  249. ///
  250. /// ```rust,ignore
  251. /// socket.connect((IpAddress::v4(10, 0, 0, 1), 80), get_ephemeral_port())
  252. /// ```
  253. ///
  254. /// The local address may optionally be provided.
  255. ///
  256. /// This function returns an error if the socket was open; see [is_open](#method.is_open).
  257. /// It also returns an error if the local or remote port is zero, or if the remote address
  258. /// is unspecified.
  259. pub fn connect<T, U>(&mut self, remote_endpoint: T, local_endpoint: U) -> Result<()>
  260. where T: Into<IpEndpoint>, U: Into<IpEndpoint> {
  261. let remote_endpoint = remote_endpoint.into();
  262. let local_endpoint = local_endpoint.into();
  263. if self.is_open() { return Err(Error::Illegal) }
  264. if !remote_endpoint.is_specified() { return Err(Error::Unaddressable) }
  265. if local_endpoint.port == 0 { return Err(Error::Unaddressable) }
  266. // If local address is not provided, use an unspecified address but a specified protocol.
  267. // This lets us lower IpRepr later to determine IP header size and calculate MSS,
  268. // but without committing to a specific address right away.
  269. let local_addr = match remote_endpoint.addr {
  270. IpAddress::Unspecified => return Err(Error::Unaddressable),
  271. _ => remote_endpoint.addr.to_unspecified(),
  272. };
  273. let local_endpoint = IpEndpoint { addr: local_addr, ..local_endpoint };
  274. // Carry over the local sequence number.
  275. let local_seq_no = self.local_seq_no;
  276. self.reset();
  277. self.local_endpoint = local_endpoint;
  278. self.remote_endpoint = remote_endpoint;
  279. self.local_seq_no = local_seq_no;
  280. self.remote_last_seq = local_seq_no;
  281. self.set_state(State::SynSent);
  282. Ok(())
  283. }
  284. /// Close the transmit half of the full-duplex connection.
  285. ///
  286. /// Note that there is no corresponding function for the receive half of the full-duplex
  287. /// connection; only the remote end can close it. If you no longer wish to receive any
  288. /// data and would like to reuse the socket right away, use [abort](#method.abort).
  289. pub fn close(&mut self) {
  290. match self.state {
  291. // In the LISTEN state there is no established connection.
  292. State::Listen =>
  293. self.set_state(State::Closed),
  294. // In the SYN-SENT state the remote endpoint is not yet synchronized and, upon
  295. // receiving an RST, will abort the connection.
  296. State::SynSent =>
  297. self.set_state(State::Closed),
  298. // In the SYN-RECEIVED, ESTABLISHED and CLOSE-WAIT states the transmit half
  299. // of the connection is open, and needs to be explicitly closed with a FIN.
  300. State::SynReceived | State::Established => {
  301. self.timer.reset();
  302. self.set_state(State::FinWait1);
  303. }
  304. State::CloseWait => {
  305. self.timer.reset();
  306. self.set_state(State::LastAck);
  307. }
  308. // In the FIN-WAIT-1, FIN-WAIT-2, CLOSING, LAST-ACK, TIME-WAIT and CLOSED states,
  309. // the transmit half of the connection is already closed, and no further
  310. // action is needed.
  311. State::FinWait1 | State::FinWait2 | State::Closing |
  312. State::TimeWait | State::LastAck | State::Closed => ()
  313. }
  314. }
  315. /// Aborts the connection, if any.
  316. ///
  317. /// This function instantly closes the socket. One reset packet will be sent to the remote
  318. /// endpoint.
  319. ///
  320. /// In terms of the TCP state machine, the socket may be in any state and is moved to
  321. /// the `CLOSED` state.
  322. pub fn abort(&mut self) {
  323. self.set_state(State::Closed);
  324. }
  325. /// Return whether the socket is passively listening for incoming connections.
  326. ///
  327. /// In terms of the TCP state machine, the socket must be in the `LISTEN` state.
  328. #[inline]
  329. pub fn is_listening(&self) -> bool {
  330. match self.state {
  331. State::Listen => true,
  332. _ => false
  333. }
  334. }
  335. /// Return whether the socket is open.
  336. ///
  337. /// This function returns true if the socket will process incoming or dispatch outgoing
  338. /// packets. Note that this does not mean that it is possible to send or receive data through
  339. /// the socket; for that, use [can_send](#method.can_send) or [can_recv](#method.can_recv).
  340. ///
  341. /// In terms of the TCP state machine, the socket must be in the `CLOSED` or `TIME-WAIT` state.
  342. #[inline]
  343. pub fn is_open(&self) -> bool {
  344. match self.state {
  345. State::Closed => false,
  346. State::TimeWait => false,
  347. _ => true
  348. }
  349. }
  350. /// Return whether a connection is active.
  351. ///
  352. /// This function returns true if the socket is actively exchanging packets with
  353. /// a remote endpoint. Note that this does not mean that it is possible to send or receive
  354. /// data through the socket; for that, use [can_send](#method.can_send) or
  355. /// [can_recv](#method.can_recv).
  356. ///
  357. /// If a connection is established, [abort](#method.close) will send a reset to
  358. /// the remote endpoint.
  359. ///
  360. /// In terms of the TCP state machine, the socket must be in the `CLOSED`, `TIME-WAIT`,
  361. /// or `LISTEN` state.
  362. #[inline]
  363. pub fn is_active(&self) -> bool {
  364. match self.state {
  365. State::Closed => false,
  366. State::TimeWait => false,
  367. State::Listen => false,
  368. _ => true
  369. }
  370. }
  371. /// Return whether the transmit half of the full-duplex connection is open.
  372. ///
  373. /// This function returns true if it's possible to send data and have it arrive
  374. /// to the remote endpoint. However, it does not make any guarantees about the state
  375. /// of the transmit buffer, and even if it returns true, [send](#method.send) may
  376. /// not be able to enqueue any octets.
  377. ///
  378. /// In terms of the TCP state machine, the socket must be in the `ESTABLISHED` or
  379. /// `CLOSE-WAIT` state.
  380. #[inline]
  381. pub fn may_send(&self) -> bool {
  382. match self.state {
  383. State::Established => true,
  384. // In CLOSE-WAIT, the remote endpoint has closed our receive half of the connection
  385. // but we still can transmit indefinitely.
  386. State::CloseWait => true,
  387. _ => false
  388. }
  389. }
  390. /// Return whether the receive half of the full-duplex connection is open.
  391. ///
  392. /// This function returns true if it's possible to receive data from the remote endpoint.
  393. /// It will return true while there is data in the receive buffer, and if there isn't,
  394. /// as long as the remote endpoint has not closed the connection.
  395. ///
  396. /// In terms of the TCP state machine, the socket must be in the `ESTABLISHED`,
  397. /// `FIN-WAIT-1`, or `FIN-WAIT-2` state, or have data in the receive buffer instead.
  398. #[inline]
  399. pub fn may_recv(&self) -> bool {
  400. match self.state {
  401. State::Established => true,
  402. // In FIN-WAIT-1/2, we have closed our transmit half of the connection but
  403. // we still can receive indefinitely.
  404. State::FinWait1 | State::FinWait2 => true,
  405. // If we have something in the receive buffer, we can receive that.
  406. _ if self.rx_buffer.len() > 0 => true,
  407. _ => false
  408. }
  409. }
  410. /// Check whether the transmit half of the full-duplex connection is open
  411. /// (see [may_send](#method.may_send), and the transmit buffer is not full.
  412. #[inline]
  413. pub fn can_send(&self) -> bool {
  414. if !self.may_send() { return false }
  415. !self.tx_buffer.full()
  416. }
  417. /// Check whether the receive half of the full-duplex connection buffer is open
  418. /// (see [may_recv](#method.may_recv), and the receive buffer is not empty.
  419. #[inline]
  420. pub fn can_recv(&self) -> bool {
  421. if !self.may_recv() { return false }
  422. !self.rx_buffer.empty()
  423. }
  424. /// Enqueue a sequence of octets to be sent, and return a pointer to it.
  425. ///
  426. /// This function may return a slice smaller than the requested size in case
  427. /// there is not enough contiguous free space in the transmit buffer, down to
  428. /// an empty slice.
  429. ///
  430. /// This function returns `Err(Error::Illegal) if the transmit half of
  431. /// the connection is not open; see [may_send](#method.may_send).
  432. pub fn send(&mut self, size: usize) -> Result<&mut [u8]> {
  433. if !self.may_send() { return Err(Error::Illegal) }
  434. let _old_length = self.tx_buffer.len();
  435. let buffer = self.tx_buffer.enqueue_many(size);
  436. if buffer.len() > 0 {
  437. #[cfg(any(test, feature = "verbose"))]
  438. net_trace!("[{}]{}:{}: tx buffer: enqueueing {} octets (now {})",
  439. self.debug_id, self.local_endpoint, self.remote_endpoint,
  440. buffer.len(), _old_length + buffer.len());
  441. self.timer.reset();
  442. }
  443. Ok(buffer)
  444. }
  445. /// Enqueue a sequence of octets to be sent, and fill it from a slice.
  446. ///
  447. /// This function returns the amount of bytes actually enqueued, which is limited
  448. /// by the amount of free space in the transmit buffer; down to zero.
  449. ///
  450. /// See also [send](#method.send).
  451. pub fn send_slice(&mut self, data: &[u8]) -> Result<usize> {
  452. if !self.may_send() { return Err(Error::Illegal) }
  453. let old_length = self.tx_buffer.len();
  454. let enqueued = self.tx_buffer.enqueue_slice(data);
  455. if enqueued != 0 {
  456. #[cfg(any(test, feature = "verbose"))]
  457. net_trace!("[{}]{}:{}: tx buffer: enqueueing {} octets (now {})",
  458. self.debug_id, self.local_endpoint, self.remote_endpoint,
  459. enqueued, old_length + enqueued);
  460. self.timer.reset();
  461. }
  462. Ok(enqueued)
  463. }
  464. /// Dequeue a sequence of received octets, and return a pointer to it.
  465. ///
  466. /// This function may return a slice smaller than the requested size in case
  467. /// there are not enough octets queued in the receive buffer, down to
  468. /// an empty slice.
  469. ///
  470. /// This function returns `Err(Error::Illegal) if the receive half of
  471. /// the connection is not open; see [may_recv](#method.may_recv).
  472. pub fn recv(&mut self, size: usize) -> Result<&[u8]> {
  473. // We may have received some data inside the initial SYN, but until the connection
  474. // is fully open we must not dequeue any data, as it may be overwritten by e.g.
  475. // another (stale) SYN.
  476. if !self.may_recv() { return Err(Error::Illegal) }
  477. #[cfg(any(test, feature = "verbose"))]
  478. let old_length = self.rx_buffer.len();
  479. let buffer = self.rx_buffer.dequeue_many(size);
  480. self.remote_seq_no += buffer.len();
  481. if buffer.len() > 0 {
  482. #[cfg(any(test, feature = "verbose"))]
  483. net_trace!("[{}]{}:{}: rx buffer: dequeueing {} octets (now {})",
  484. self.debug_id, self.local_endpoint, self.remote_endpoint,
  485. buffer.len(), old_length - buffer.len());
  486. }
  487. Ok(buffer)
  488. }
  489. /// Dequeue a sequence of received octets, and fill a slice from it.
  490. ///
  491. /// This function returns the amount of bytes actually dequeued, which is limited
  492. /// by the amount of free space in the transmit buffer; down to zero.
  493. ///
  494. /// See also [recv](#method.recv).
  495. pub fn recv_slice(&mut self, data: &mut [u8]) -> Result<usize> {
  496. // See recv() above.
  497. if !self.may_recv() { return Err(Error::Illegal) }
  498. let old_length = self.rx_buffer.len();
  499. let dequeued = self.rx_buffer.dequeue_slice(data);
  500. self.remote_seq_no += dequeued;
  501. if dequeued > 0 {
  502. #[cfg(any(test, feature = "verbose"))]
  503. net_trace!("[{}]{}:{}: rx buffer: dequeueing {} octets (now {})",
  504. self.debug_id, self.local_endpoint, self.remote_endpoint,
  505. dequeued, old_length - dequeued);
  506. }
  507. Ok(dequeued)
  508. }
  509. /// Peek at a sequence of received octets without removing them from
  510. /// the receive buffer, and return a pointer to it.
  511. ///
  512. /// This function otherwise behaves identically to [recv](#method.recv).
  513. pub fn peek(&mut self, size: usize) -> Result<&[u8]> {
  514. // See recv() above.
  515. if !self.may_recv() { return Err(Error::Illegal) }
  516. let buffer = self.rx_buffer.peek(0, size);
  517. if buffer.len() > 0 {
  518. #[cfg(any(test, feature = "verbose"))]
  519. net_trace!("[{}]{}:{}: rx buffer: peeking at {} octets",
  520. self.debug_id, self.local_endpoint, self.remote_endpoint,
  521. buffer.len());
  522. }
  523. Ok(buffer)
  524. }
  525. /// Peek at a sequence of received octets without removing them from
  526. /// the receive buffer, and fill a slice from it.
  527. ///
  528. /// This function otherwise behaves identically to [recv_slice](#method.recv_slice).
  529. pub fn peek_slice(&mut self, data: &mut [u8]) -> Result<usize> {
  530. let buffer = self.peek(data.len())?;
  531. let data = &mut data[..buffer.len()];
  532. data.copy_from_slice(buffer);
  533. Ok(buffer.len())
  534. }
  535. /// Return the amount of octets queued in the transmit buffer.
  536. ///
  537. /// Note that the Berkeley sockets interface does not have an equivalent of this API.
  538. pub fn send_queue(&self) -> usize {
  539. self.tx_buffer.len()
  540. }
  541. /// Return the amount of octets queued in the receive buffer.
  542. ///
  543. /// Note that the Berkeley sockets interface does not have an equivalent of this API.
  544. pub fn recv_queue(&self) -> usize {
  545. self.rx_buffer.len()
  546. }
  547. fn set_state(&mut self, state: State) {
  548. if self.state != state {
  549. if self.remote_endpoint.addr.is_unspecified() {
  550. net_trace!("[{}]{}: state={}=>{}",
  551. self.debug_id, self.local_endpoint,
  552. self.state, state);
  553. } else {
  554. net_trace!("[{}]{}:{}: state={}=>{}",
  555. self.debug_id, self.local_endpoint, self.remote_endpoint,
  556. self.state, state);
  557. }
  558. }
  559. self.state = state
  560. }
  561. pub(crate) fn reply(ip_repr: &IpRepr, repr: &TcpRepr) -> (IpRepr, TcpRepr<'static>) {
  562. let reply_repr = TcpRepr {
  563. src_port: repr.dst_port,
  564. dst_port: repr.src_port,
  565. control: TcpControl::None,
  566. seq_number: TcpSeqNumber(0),
  567. ack_number: None,
  568. window_len: 0,
  569. max_seg_size: None,
  570. payload: &[]
  571. };
  572. let ip_reply_repr = IpRepr::Unspecified {
  573. src_addr: ip_repr.dst_addr(),
  574. dst_addr: ip_repr.src_addr(),
  575. protocol: IpProtocol::Tcp,
  576. payload_len: reply_repr.buffer_len()
  577. };
  578. (ip_reply_repr, reply_repr)
  579. }
  580. pub(crate) fn rst_reply(ip_repr: &IpRepr, repr: &TcpRepr) -> (IpRepr, TcpRepr<'static>) {
  581. debug_assert!(repr.control != TcpControl::Rst);
  582. let (ip_reply_repr, mut reply_repr) = Self::reply(ip_repr, repr);
  583. // See https://www.snellman.net/blog/archive/2016-02-01-tcp-rst/ for explanation
  584. // of why we sometimes send an RST and sometimes an RST|ACK
  585. reply_repr.control = TcpControl::Rst;
  586. reply_repr.seq_number = repr.ack_number.unwrap_or_default();
  587. if repr.control == TcpControl::Syn {
  588. reply_repr.ack_number = Some(repr.seq_number + repr.segment_len());
  589. }
  590. (ip_reply_repr, reply_repr)
  591. }
  592. pub(crate) fn ack_reply(&self, ip_repr: &IpRepr, repr: &TcpRepr) ->
  593. (IpRepr, TcpRepr<'static>) {
  594. let (ip_reply_repr, mut reply_repr) = Self::reply(ip_repr, repr);
  595. // From RFC793:
  596. // [...] an empty acknowledgment segment containing the current send-sequence number
  597. // and an acknowledgment indicating the next sequence number expected
  598. // to be received.
  599. reply_repr.seq_number = self.remote_last_seq;
  600. reply_repr.ack_number = self.remote_last_ack;
  601. reply_repr.window_len = self.rx_buffer.window() as u16;
  602. (ip_reply_repr, reply_repr)
  603. }
  604. pub(crate) fn process(&mut self, timestamp: u64, ip_repr: &IpRepr, repr: &TcpRepr) ->
  605. Result<Option<(IpRepr, TcpRepr<'static>)>> {
  606. if self.state == State::Closed { return Err(Error::Rejected) }
  607. // If we're still listening for SYNs and the packet has an ACK, it cannot
  608. // be destined to this socket, but another one may well listen on the same
  609. // local endpoint.
  610. if self.state == State::Listen && repr.ack_number.is_some() { return Err(Error::Rejected) }
  611. // Reject packets with a wrong destination.
  612. if self.local_endpoint.port != repr.dst_port { return Err(Error::Rejected) }
  613. if !self.local_endpoint.addr.is_unspecified() &&
  614. self.local_endpoint.addr != ip_repr.dst_addr() { return Err(Error::Rejected) }
  615. // Reject packets from a source to which we aren't connected.
  616. if self.remote_endpoint.port != 0 &&
  617. self.remote_endpoint.port != repr.src_port { return Err(Error::Rejected) }
  618. if !self.remote_endpoint.addr.is_unspecified() &&
  619. self.remote_endpoint.addr != ip_repr.src_addr() { return Err(Error::Rejected) }
  620. // Consider how much the sequence number space differs from the transmit buffer space.
  621. let (sent_syn, sent_fin) = match self.state {
  622. // In SYN-SENT or SYN-RECEIVED, we've just sent a SYN.
  623. State::SynSent | State::SynReceived => (true, false),
  624. // In FIN-WAIT-1, LAST-ACK, or CLOSING, we've just sent a FIN.
  625. State::FinWait1 | State::LastAck | State::Closing => (false, true),
  626. // In all other states we've already got acknowledgemetns for
  627. // all of the control flags we sent.
  628. _ => (false, false)
  629. };
  630. let control_len = (sent_syn as usize) + (sent_fin as usize);
  631. // Reject unacceptable acknowledgements.
  632. match (self.state, repr) {
  633. // An RST received in response to initial SYN is acceptable if it acknowledges
  634. // the initial SYN.
  635. (State::SynSent, &TcpRepr {
  636. control: TcpControl::Rst, ack_number: None, ..
  637. }) => {
  638. net_debug!("[{}]{}:{}: unacceptable RST (expecting RST|ACK) \
  639. in response to initial SYN",
  640. self.debug_id, self.local_endpoint, self.remote_endpoint);
  641. return Err(Error::Dropped)
  642. }
  643. (State::SynSent, &TcpRepr {
  644. control: TcpControl::Rst, ack_number: Some(ack_number), ..
  645. }) => {
  646. if ack_number != self.local_seq_no + 1 {
  647. net_debug!("[{}]{}:{}: unacceptable RST|ACK in response to initial SYN",
  648. self.debug_id, self.local_endpoint, self.remote_endpoint);
  649. return Err(Error::Dropped)
  650. }
  651. }
  652. // Any other RST need only have a valid sequence number.
  653. (_, &TcpRepr { control: TcpControl::Rst, .. }) => (),
  654. // The initial SYN cannot contain an acknowledgement.
  655. (State::Listen, &TcpRepr { ack_number: None, .. }) => (),
  656. // This case is handled above.
  657. (State::Listen, &TcpRepr { ack_number: Some(_), .. }) => unreachable!(),
  658. // Every packet after the initial SYN must be an acknowledgement.
  659. (_, &TcpRepr { ack_number: None, .. }) => {
  660. net_debug!("[{}]{}:{}: expecting an ACK",
  661. self.debug_id, self.local_endpoint, self.remote_endpoint);
  662. return Err(Error::Dropped)
  663. }
  664. // Every acknowledgement must be for transmitted but unacknowledged data.
  665. (_, &TcpRepr { ack_number: Some(ack_number), .. }) => {
  666. let unacknowledged = self.tx_buffer.len() + control_len;
  667. if ack_number < self.local_seq_no {
  668. net_debug!("[{}]{}:{}: duplicate ACK ({} not in {}...{})",
  669. self.debug_id, self.local_endpoint, self.remote_endpoint,
  670. ack_number, self.local_seq_no, self.local_seq_no + unacknowledged);
  671. // FIXME: instead of waiting for the retransmit timer to kick in,
  672. // reset it here.
  673. return Err(Error::Dropped)
  674. }
  675. if ack_number > self.local_seq_no + unacknowledged {
  676. net_debug!("[{}]{}:{}: unacceptable ACK ({} not in {}...{})",
  677. self.debug_id, self.local_endpoint, self.remote_endpoint,
  678. ack_number, self.local_seq_no, self.local_seq_no + unacknowledged);
  679. return Err(Error::Dropped)
  680. }
  681. }
  682. }
  683. match self.state {
  684. // In LISTEN and SYN-SENT states, we have not yet synchronized with the remote end.
  685. State::Listen => (),
  686. State::SynSent => (),
  687. // In all other states, segments must occupy a valid portion of the receive window.
  688. _ => {
  689. let mut send_challenge_ack = false;
  690. let window_start = self.remote_seq_no + self.rx_buffer.len();
  691. let window_end = self.remote_seq_no + self.rx_buffer.capacity();
  692. let segment_start = repr.seq_number;
  693. let segment_end = repr.seq_number + repr.segment_len();
  694. if window_start == window_end && segment_start != segment_end {
  695. net_debug!("[{}]{}:{}: non-zero-length segment with zero receive window, \
  696. will only send an ACK",
  697. self.debug_id, self.local_endpoint, self.remote_endpoint);
  698. send_challenge_ack = true;
  699. }
  700. if !((window_start <= segment_start && segment_start <= window_end) ||
  701. (window_start <= segment_end && segment_end <= window_end)) {
  702. net_debug!("[{}]{}:{}: segment not in receive window \
  703. ({}..{} not intersecting {}..{}), will send challenge ACK",
  704. self.debug_id, self.local_endpoint, self.remote_endpoint,
  705. segment_start, segment_end, window_start, window_end);
  706. send_challenge_ack = true;
  707. }
  708. // For now, do not actually try to reassemble out-of-order segments.
  709. if segment_start != window_start {
  710. net_debug!("[{}]{}:{}: out-of-order SEQ ({} not equal to {}), \
  711. will send challenge ACK",
  712. self.debug_id, self.local_endpoint, self.remote_endpoint,
  713. segment_start, window_start);
  714. // Some segments between what we have last received and this segment
  715. // went missing. Send a duplicate ACK; RFC 793 does not specify the behavior
  716. // required when receiving a duplicate ACK, but in practice (see RFC 1122
  717. // section 4.2.2.21) most congestion control algorithms implement what's called
  718. // a "fast retransmit", where a threshold amount of duplicate ACKs triggers
  719. // retransmission.
  720. send_challenge_ack = true;
  721. }
  722. if send_challenge_ack {
  723. // If we're in the TIME-WAIT state, restart the TIME-WAIT timeout, since
  724. // the remote end may not have realized we've closed the connection.
  725. if self.state == State::TimeWait {
  726. self.timer.set_for_close(timestamp);
  727. }
  728. return Ok(Some(self.ack_reply(ip_repr, &repr)))
  729. }
  730. }
  731. }
  732. // Compute the amount of acknowledged octets, removing the SYN and FIN bits
  733. // from the sequence space.
  734. let mut ack_len = 0;
  735. let mut ack_of_fin = false;
  736. if repr.control != TcpControl::Rst {
  737. if let Some(ack_number) = repr.ack_number {
  738. ack_len = ack_number - self.local_seq_no;
  739. // There could have been no data sent before the SYN, so we always remove it
  740. // from the sequence space.
  741. if sent_syn {
  742. ack_len -= 1
  743. }
  744. // We could've sent data before the FIN, so only remove FIN from the sequence
  745. // space if all of that data is acknowledged.
  746. if sent_fin && self.tx_buffer.len() + 1 == ack_len {
  747. ack_len -= 1;
  748. net_trace!("[{}]{}:{}: received ACK of FIN",
  749. self.debug_id, self.local_endpoint, self.remote_endpoint);
  750. ack_of_fin = true;
  751. }
  752. }
  753. }
  754. // We don't care about the PSH flag.
  755. let control =
  756. if repr.control == TcpControl::Psh {
  757. TcpControl::None
  758. } else {
  759. repr.control
  760. };
  761. // Validate and update the state.
  762. match (self.state, control) {
  763. // RSTs are not accepted in the LISTEN state.
  764. (State::Listen, TcpControl::Rst) =>
  765. return Err(Error::Dropped),
  766. // RSTs in SYN-RECEIVED flip the socket back to the LISTEN state.
  767. (State::SynReceived, TcpControl::Rst) => {
  768. net_trace!("[{}]{}:{}: received RST",
  769. self.debug_id, self.local_endpoint, self.remote_endpoint);
  770. self.local_endpoint.addr = self.listen_address;
  771. self.remote_endpoint = IpEndpoint::default();
  772. self.set_state(State::Listen);
  773. return Ok(None)
  774. }
  775. // RSTs in any other state close the socket.
  776. (_, TcpControl::Rst) => {
  777. net_trace!("[{}]{}:{}: received RST",
  778. self.debug_id, self.local_endpoint, self.remote_endpoint);
  779. self.set_state(State::Closed);
  780. self.local_endpoint = IpEndpoint::default();
  781. self.remote_endpoint = IpEndpoint::default();
  782. return Ok(None)
  783. }
  784. // SYN packets in the LISTEN state change it to SYN-RECEIVED.
  785. (State::Listen, TcpControl::Syn) => {
  786. net_trace!("[{}]{}: received SYN",
  787. self.debug_id, self.local_endpoint);
  788. self.local_endpoint = IpEndpoint::new(ip_repr.dst_addr(), repr.dst_port);
  789. self.remote_endpoint = IpEndpoint::new(ip_repr.src_addr(), repr.src_port);
  790. // FIXME: use something more secure here
  791. self.local_seq_no = TcpSeqNumber(-repr.seq_number.0);
  792. self.remote_seq_no = repr.seq_number + 1;
  793. self.remote_last_seq = self.local_seq_no;
  794. if let Some(max_seg_size) = repr.max_seg_size {
  795. self.remote_mss = max_seg_size as usize
  796. }
  797. self.set_state(State::SynReceived);
  798. self.timer.reset();
  799. }
  800. // ACK packets in the SYN-RECEIVED state change it to ESTABLISHED.
  801. (State::SynReceived, TcpControl::None) => {
  802. self.set_state(State::Established);
  803. self.timer.reset();
  804. }
  805. // FIN packets in the SYN-RECEIVED state change it to CLOSE-WAIT.
  806. // It's not obvious from RFC 793 that this is permitted, but
  807. // 7th and 8th steps in the "SEGMENT ARRIVES" event describe this behavior.
  808. (State::SynReceived, TcpControl::Fin) => {
  809. self.remote_seq_no += 1;
  810. self.set_state(State::CloseWait);
  811. self.timer.reset();
  812. }
  813. // SYN|ACK packets in the SYN-SENT state change it to ESTABLISHED.
  814. (State::SynSent, TcpControl::Syn) => {
  815. net_trace!("[{}]{}:{}: received SYN|ACK",
  816. self.debug_id, self.local_endpoint, self.remote_endpoint);
  817. self.local_endpoint = IpEndpoint::new(ip_repr.dst_addr(), repr.dst_port);
  818. self.remote_seq_no = repr.seq_number + 1;
  819. self.remote_last_seq = self.local_seq_no + 1;
  820. if let Some(max_seg_size) = repr.max_seg_size {
  821. self.remote_mss = max_seg_size as usize;
  822. }
  823. self.set_state(State::Established);
  824. self.timer.reset();
  825. }
  826. // ACK packets in ESTABLISHED state reset the retransmit timer.
  827. (State::Established, TcpControl::None) => {
  828. self.timer.reset()
  829. },
  830. // FIN packets in ESTABLISHED state indicate the remote side has closed.
  831. (State::Established, TcpControl::Fin) => {
  832. self.remote_seq_no += 1;
  833. self.set_state(State::CloseWait);
  834. self.timer.reset();
  835. }
  836. // ACK packets in FIN-WAIT-1 state change it to FIN-WAIT-2, if we've already
  837. // sent everything in the transmit buffer. If not, they reset the retransmit timer.
  838. (State::FinWait1, TcpControl::None) => {
  839. if ack_of_fin {
  840. self.set_state(State::FinWait2);
  841. }
  842. self.timer.reset();
  843. }
  844. // FIN packets in FIN-WAIT-1 state change it to CLOSING, or to TIME-WAIT
  845. // if they also acknowledge our FIN.
  846. (State::FinWait1, TcpControl::Fin) => {
  847. self.remote_seq_no += 1;
  848. if ack_of_fin {
  849. self.set_state(State::TimeWait);
  850. self.timer.set_for_close(timestamp);
  851. } else {
  852. self.set_state(State::Closing);
  853. self.timer.reset();
  854. }
  855. }
  856. // FIN packets in FIN-WAIT-2 state change it to TIME-WAIT.
  857. (State::FinWait2, TcpControl::Fin) => {
  858. self.remote_seq_no += 1;
  859. self.set_state(State::TimeWait);
  860. self.timer.set_for_close(timestamp);
  861. }
  862. // ACK packets in CLOSING state change it to TIME-WAIT.
  863. (State::Closing, TcpControl::None) => {
  864. if ack_of_fin {
  865. self.set_state(State::TimeWait);
  866. self.timer.set_for_close(timestamp);
  867. } else {
  868. self.timer.reset();
  869. }
  870. }
  871. // ACK packets in CLOSE-WAIT state reset the retransmit timer.
  872. (State::CloseWait, TcpControl::None) => {
  873. self.timer.reset();
  874. }
  875. // ACK packets in LAST-ACK state change it to CLOSED.
  876. (State::LastAck, TcpControl::None) => {
  877. // Clear the remote endpoint, or we'll send an RST there.
  878. self.set_state(State::Closed);
  879. self.remote_endpoint = IpEndpoint::default();
  880. }
  881. _ => {
  882. net_debug!("[{}]{}:{}: unexpected packet {}",
  883. self.debug_id, self.local_endpoint, self.remote_endpoint, repr);
  884. return Err(Error::Dropped)
  885. }
  886. }
  887. // Update window length.
  888. self.remote_win_len = repr.window_len as usize;
  889. if ack_len > 0 {
  890. // Dequeue acknowledged octets.
  891. net_trace!("[{}]{}:{}: tx buffer: dequeueing {} octets (now {})",
  892. self.debug_id, self.local_endpoint, self.remote_endpoint,
  893. ack_len, self.tx_buffer.len() - ack_len);
  894. let acked = self.tx_buffer.dequeue_many(ack_len);
  895. debug_assert!(acked.len() == ack_len);
  896. }
  897. // We've processed everything in the incoming segment, so advance the local
  898. // sequence number past it.
  899. if let Some(ack_number) = repr.ack_number {
  900. self.local_seq_no = ack_number;
  901. }
  902. if repr.payload.len() > 0 {
  903. // Enqueue payload octets, which are guaranteed to be in order.
  904. net_trace!("[{}]{}:{}: rx buffer: enqueueing {} octets (now {})",
  905. self.debug_id, self.local_endpoint, self.remote_endpoint,
  906. repr.payload.len(), self.rx_buffer.len() + repr.payload.len());
  907. self.rx_buffer.enqueue_slice(repr.payload);
  908. }
  909. Ok(None)
  910. }
  911. fn seq_to_transmit(&self, control: TcpControl) -> bool {
  912. self.remote_last_seq < self.local_seq_no + self.tx_buffer.len() + control.len()
  913. }
  914. fn ack_to_transmit(&self) -> bool {
  915. if let Some(remote_last_ack) = self.remote_last_ack {
  916. remote_last_ack < self.remote_seq_no + self.rx_buffer.len()
  917. } else {
  918. true
  919. }
  920. }
  921. pub(crate) fn dispatch<F>(&mut self, timestamp: u64, limits: &DeviceLimits,
  922. emit: F) -> Result<()>
  923. where F: FnOnce((IpRepr, TcpRepr)) -> Result<()> {
  924. if !self.remote_endpoint.is_specified() { return Err(Error::Exhausted) }
  925. if !self.seq_to_transmit(TcpControl::None) {
  926. if let Some(retransmit_delta) = self.timer.should_retransmit(timestamp) {
  927. // If a retransmit timer expired, we should resend data starting at the last ACK.
  928. net_debug!("[{}]{}:{}: retransmitting at t+{}ms",
  929. self.debug_id, self.local_endpoint, self.remote_endpoint,
  930. retransmit_delta);
  931. self.remote_last_seq = self.local_seq_no;
  932. }
  933. }
  934. let mut repr = TcpRepr {
  935. src_port: self.local_endpoint.port,
  936. dst_port: self.remote_endpoint.port,
  937. control: TcpControl::None,
  938. seq_number: self.remote_last_seq,
  939. ack_number: Some(self.remote_seq_no + self.rx_buffer.len()),
  940. window_len: self.rx_buffer.window() as u16,
  941. max_seg_size: None,
  942. payload: &[]
  943. };
  944. match self.state {
  945. // We transmit an RST in the CLOSED state. If we ended up in the CLOSED state
  946. // with a specified endpoint, it means that the socket was aborted.
  947. State::Closed => {
  948. repr.control = TcpControl::Rst;
  949. }
  950. // We never transmit anything in the LISTEN state.
  951. State::Listen => return Err(Error::Exhausted),
  952. // We transmit a SYN in the SYN-SENT state.
  953. // We transmit a SYN|ACK in the SYN-RECEIVED state.
  954. State::SynSent | State::SynReceived => {
  955. repr.control = TcpControl::Syn;
  956. if self.state == State::SynSent {
  957. repr.ack_number = None;
  958. }
  959. }
  960. // We transmit data in all states where we may have data in the buffer,
  961. // or the transmit half of the connection is still open:
  962. // the ESTABLISHED, FIN-WAIT-1, CLOSE-WAIT and LAST-ACK states.
  963. State::Established | State::FinWait1 | State::CloseWait | State::LastAck => {
  964. // Extract as much data as the remote side can receive in this packet
  965. // from the transmit buffer.
  966. let offset = self.remote_last_seq - self.local_seq_no;
  967. let size = cmp::min(self.remote_win_len, self.remote_mss);
  968. repr.payload = self.tx_buffer.peek(offset, size);
  969. // If we've sent everything we had in the buffer, follow it with the PSH or FIN
  970. // flags, depending on whether the transmit half of the connection is open.
  971. if offset + repr.payload.len() == self.tx_buffer.len() {
  972. match self.state {
  973. State::FinWait1 | State::LastAck =>
  974. repr.control = TcpControl::Fin,
  975. State::Established | State::CloseWait =>
  976. repr.control = TcpControl::Psh,
  977. _ => ()
  978. }
  979. }
  980. }
  981. // We do not transmit anything in the FIN-WAIT-2 state.
  982. State::FinWait2 => return Err(Error::Exhausted),
  983. // We do not transmit data or control flags in the CLOSING state, but we may
  984. // retransmit an ACK.
  985. State::Closing => (),
  986. // Handling of the TIME-WAIT state is the same as for the CLOSING state, but also
  987. // we wait for the timer to expire.
  988. State::TimeWait => {
  989. if self.timer.should_close(timestamp) {
  990. net_trace!("[{}]{}:{}: TIME-WAIT timeout",
  991. self.debug_id, self.local_endpoint, self.remote_endpoint);
  992. self.reset();
  993. return Err(Error::Exhausted)
  994. }
  995. }
  996. }
  997. if self.seq_to_transmit(repr.control) && repr.segment_len() > 0 {
  998. // If we have data to transmit and it fits into partner's window, do it.
  999. } else if self.ack_to_transmit() && repr.ack_number.is_some() {
  1000. // If we have data to acknowledge, do it.
  1001. } else if repr.window_len > self.remote_last_win {
  1002. // If we have window length increase to advertise, do it.
  1003. } else if self.timer.should_retransmit(timestamp).is_some() {
  1004. // If we have packets to retransmit, do it.
  1005. } else if repr.control == TcpControl::Rst {
  1006. // If we need to abort the connection, do it.
  1007. } else {
  1008. return Err(Error::Exhausted)
  1009. }
  1010. if repr.payload.len() > 0 {
  1011. net_trace!("[{}]{}:{}: tx buffer: peeking at {} octets (from {})",
  1012. self.debug_id, self.local_endpoint, self.remote_endpoint,
  1013. repr.payload.len(), self.remote_last_seq - self.local_seq_no);
  1014. } else {
  1015. let flags =
  1016. match (repr.control, repr.ack_number) {
  1017. (TcpControl::Syn, None) => "SYN",
  1018. (TcpControl::Syn, Some(_)) => "SYN|ACK",
  1019. (TcpControl::Fin, Some(_)) => "FIN|ACK",
  1020. (TcpControl::Rst, Some(_)) => "RST|ACK",
  1021. (TcpControl::Psh, Some(_)) => "PSH|ACK",
  1022. (TcpControl::None, Some(_)) => "ACK",
  1023. _ => unreachable!()
  1024. };
  1025. net_trace!("[{}]{}:{}: sending {}",
  1026. self.debug_id, self.local_endpoint, self.remote_endpoint,
  1027. flags);
  1028. }
  1029. // Remember the header length before enabling the MSS option, since that option
  1030. // only affects SYN packets.
  1031. let header_len = repr.header_len();
  1032. if repr.control == TcpControl::Syn {
  1033. // First enable the option, without assigning any value, to get a correct
  1034. // result for the payload_len field of ip_repr below.
  1035. repr.max_seg_size = Some(0);
  1036. }
  1037. // Then, construct the IP representation, since we know the final length
  1038. // of the TCP header.
  1039. let ip_repr = IpRepr::Unspecified {
  1040. src_addr: self.local_endpoint.addr,
  1041. dst_addr: self.remote_endpoint.addr,
  1042. protocol: IpProtocol::Tcp,
  1043. payload_len: repr.buffer_len()
  1044. }.lower(&[])?;
  1045. // Finally, compute the maximum segment size, deriving it from from the underlying
  1046. // maximum transmission unit and the header sizes we just determined.
  1047. let mut max_segment_size = limits.max_transmission_unit;
  1048. max_segment_size -= header_len;
  1049. max_segment_size -= ip_repr.buffer_len();
  1050. if repr.control == TcpControl::Syn {
  1051. // And fill in the actual option, if it's a SYN packet.
  1052. repr.max_seg_size = Some(max_segment_size as u16);
  1053. }
  1054. emit((ip_repr, repr))?;
  1055. // We've sent a packet successfully, so we can update the internal state now.
  1056. self.remote_last_seq = repr.seq_number + repr.segment_len();
  1057. self.remote_last_ack = repr.ack_number;
  1058. self.remote_last_win = repr.window_len;
  1059. if !self.seq_to_transmit(repr.control) && repr.segment_len() > 0 {
  1060. // If we've transmitted all data could (and there was something at all,
  1061. // data or flag, to transmit, not just an ACK), wind up the retransmit timer.
  1062. self.timer.set_for_retransmit(timestamp);
  1063. }
  1064. if repr.control == TcpControl::Rst {
  1065. // When aborting a connection, forget about it after sending
  1066. // the RST packet once.
  1067. self.local_endpoint = IpEndpoint::default();
  1068. self.remote_endpoint = IpEndpoint::default();
  1069. }
  1070. Ok(())
  1071. }
  1072. pub(crate) fn poll_at(&self) -> Option<u64> {
  1073. self.timer.poll_at().or_else(|| {
  1074. if self.tx_buffer.empty() {
  1075. None
  1076. } else {
  1077. Some(0)
  1078. }
  1079. })
  1080. }
  1081. }
  1082. impl<'a> fmt::Write for TcpSocket<'a> {
  1083. fn write_str(&mut self, slice: &str) -> fmt::Result {
  1084. let slice = slice.as_bytes();
  1085. if self.send_slice(slice) == Ok(slice.len()) {
  1086. Ok(())
  1087. } else {
  1088. Err(fmt::Error)
  1089. }
  1090. }
  1091. }
  1092. #[cfg(test)]
  1093. mod test {
  1094. use wire::{IpAddress, Ipv4Address};
  1095. use super::*;
  1096. #[test]
  1097. fn test_timer_retransmit() {
  1098. let mut r = Timer::Idle;
  1099. assert_eq!(r.should_retransmit(1000), None);
  1100. r.set_for_retransmit(1000);
  1101. assert_eq!(r.should_retransmit(1000), None);
  1102. assert_eq!(r.should_retransmit(1050), None);
  1103. assert_eq!(r.should_retransmit(1101), Some(101));
  1104. r.set_for_retransmit(1101);
  1105. assert_eq!(r.should_retransmit(1101), None);
  1106. assert_eq!(r.should_retransmit(1150), None);
  1107. assert_eq!(r.should_retransmit(1200), None);
  1108. assert_eq!(r.should_retransmit(1301), Some(300));
  1109. r.reset();
  1110. assert_eq!(r.should_retransmit(1350), None);
  1111. }
  1112. const LOCAL_IP: IpAddress = IpAddress::Ipv4(Ipv4Address([10, 0, 0, 1]));
  1113. const REMOTE_IP: IpAddress = IpAddress::Ipv4(Ipv4Address([10, 0, 0, 2]));
  1114. const LOCAL_PORT: u16 = 80;
  1115. const REMOTE_PORT: u16 = 49500;
  1116. const LOCAL_END: IpEndpoint = IpEndpoint { addr: LOCAL_IP, port: LOCAL_PORT };
  1117. const REMOTE_END: IpEndpoint = IpEndpoint { addr: REMOTE_IP, port: REMOTE_PORT };
  1118. const LOCAL_SEQ: TcpSeqNumber = TcpSeqNumber(10000);
  1119. const REMOTE_SEQ: TcpSeqNumber = TcpSeqNumber(-10000);
  1120. const SEND_TEMPL: TcpRepr<'static> = TcpRepr {
  1121. src_port: REMOTE_PORT, dst_port: LOCAL_PORT,
  1122. control: TcpControl::None,
  1123. seq_number: TcpSeqNumber(0), ack_number: Some(TcpSeqNumber(0)),
  1124. window_len: 256, max_seg_size: None,
  1125. payload: &[]
  1126. };
  1127. const RECV_TEMPL: TcpRepr<'static> = TcpRepr {
  1128. src_port: LOCAL_PORT, dst_port: REMOTE_PORT,
  1129. control: TcpControl::None,
  1130. seq_number: TcpSeqNumber(0), ack_number: Some(TcpSeqNumber(0)),
  1131. window_len: 64, max_seg_size: None,
  1132. payload: &[]
  1133. };
  1134. fn send(socket: &mut TcpSocket, timestamp: u64, repr: &TcpRepr) ->
  1135. Result<Option<TcpRepr<'static>>> {
  1136. trace!("send: {}", repr);
  1137. let ip_repr = IpRepr::Unspecified {
  1138. src_addr: REMOTE_IP,
  1139. dst_addr: LOCAL_IP,
  1140. protocol: IpProtocol::Tcp,
  1141. payload_len: repr.buffer_len()
  1142. };
  1143. match socket.process(timestamp, &ip_repr, repr) {
  1144. Ok(Some((_ip_repr, repr))) => {
  1145. trace!("recv: {}", repr);
  1146. Ok(Some(repr))
  1147. }
  1148. Ok(None) => Ok(None),
  1149. Err(err) => Err(err)
  1150. }
  1151. }
  1152. fn recv<F>(socket: &mut TcpSocket, timestamp: u64, mut f: F)
  1153. where F: FnMut(Result<TcpRepr>) {
  1154. let mut limits = DeviceLimits::default();
  1155. limits.max_transmission_unit = 1520;
  1156. let result = socket.dispatch(timestamp, &limits, |(ip_repr, tcp_repr)| {
  1157. let ip_repr = ip_repr.lower(&[LOCAL_END.addr.into()]).unwrap();
  1158. assert_eq!(ip_repr.protocol(), IpProtocol::Tcp);
  1159. assert_eq!(ip_repr.src_addr(), LOCAL_IP);
  1160. assert_eq!(ip_repr.dst_addr(), REMOTE_IP);
  1161. trace!("recv: {}", tcp_repr);
  1162. Ok(f(Ok(tcp_repr)))
  1163. });
  1164. match result {
  1165. Ok(()) => (),
  1166. Err(e) => f(Err(e))
  1167. }
  1168. }
  1169. macro_rules! send {
  1170. ($socket:ident, $repr:expr) =>
  1171. (send!($socket, time 0, $repr));
  1172. ($socket:ident, $repr:expr, $result:expr) =>
  1173. (send!($socket, time 0, $repr, $result));
  1174. ($socket:ident, time $time:expr, $repr:expr) =>
  1175. (send!($socket, time $time, $repr, Ok(None)));
  1176. ($socket:ident, time $time:expr, $repr:expr, $result:expr) =>
  1177. (assert_eq!(send(&mut $socket, $time, &$repr), $result));
  1178. }
  1179. macro_rules! recv {
  1180. ($socket:ident, [$( $repr:expr ),*]) => ({
  1181. $( recv!($socket, Ok($repr)); )*
  1182. recv!($socket, Err(Error::Exhausted))
  1183. });
  1184. ($socket:ident, $result:expr) =>
  1185. (recv!($socket, time 0, $result));
  1186. ($socket:ident, time $time:expr, $result:expr) =>
  1187. (recv(&mut $socket, $time, |result| {
  1188. // Most of the time we don't care about the PSH flag.
  1189. let result = result.map(|mut repr| {
  1190. if repr.control == TcpControl::Psh {
  1191. repr.control = TcpControl::None;
  1192. }
  1193. repr
  1194. });
  1195. assert_eq!(result, $result)
  1196. }));
  1197. ($socket:ident, time $time:expr, $result:expr, exact) =>
  1198. (recv(&mut $socket, $time, |repr| assert_eq!(repr, $result)));
  1199. }
  1200. macro_rules! sanity {
  1201. ($socket1:expr, $socket2:expr) => ({
  1202. let (s1, s2) = ($socket1, $socket2);
  1203. assert_eq!(s1.state, s2.state, "state");
  1204. assert_eq!(s1.listen_address, s2.listen_address, "listen_address");
  1205. assert_eq!(s1.local_endpoint, s2.local_endpoint, "local_endpoint");
  1206. assert_eq!(s1.remote_endpoint, s2.remote_endpoint, "remote_endpoint");
  1207. assert_eq!(s1.local_seq_no, s2.local_seq_no, "local_seq_no");
  1208. assert_eq!(s1.remote_seq_no, s2.remote_seq_no, "remote_seq_no");
  1209. assert_eq!(s1.remote_last_seq, s2.remote_last_seq, "remote_last_seq");
  1210. assert_eq!(s1.remote_last_ack, s2.remote_last_ack, "remote_last_ack");
  1211. assert_eq!(s1.remote_last_win, s2.remote_last_win, "remote_last_win");
  1212. assert_eq!(s1.remote_win_len, s2.remote_win_len, "remote_win_len");
  1213. assert_eq!(s1.timer, s2.timer, "timer");
  1214. })
  1215. }
  1216. fn init_logger() {
  1217. extern crate log;
  1218. use std::boxed::Box;
  1219. struct Logger(());
  1220. impl log::Log for Logger {
  1221. fn enabled(&self, _metadata: &log::LogMetadata) -> bool {
  1222. true
  1223. }
  1224. fn log(&self, record: &log::LogRecord) {
  1225. println!("{}", record.args());
  1226. }
  1227. }
  1228. let _ = log::set_logger(|max_level| {
  1229. max_level.set(log::LogLevelFilter::Trace);
  1230. Box::new(Logger(()))
  1231. });
  1232. println!("");
  1233. }
  1234. fn socket() -> TcpSocket<'static> {
  1235. init_logger();
  1236. let rx_buffer = SocketBuffer::new(vec![0; 64]);
  1237. let tx_buffer = SocketBuffer::new(vec![0; 64]);
  1238. match TcpSocket::new(rx_buffer, tx_buffer) {
  1239. Socket::Tcp(socket) => socket,
  1240. _ => unreachable!()
  1241. }
  1242. }
  1243. // =========================================================================================//
  1244. // Tests for the CLOSED state.
  1245. // =========================================================================================//
  1246. #[test]
  1247. fn test_closed_reject() {
  1248. let mut s = socket();
  1249. assert_eq!(s.state, State::Closed);
  1250. send!(s, TcpRepr {
  1251. control: TcpControl::Syn,
  1252. ..SEND_TEMPL
  1253. }, Err(Error::Rejected));
  1254. }
  1255. #[test]
  1256. fn test_closed_reject_after_listen() {
  1257. let mut s = socket();
  1258. s.listen(LOCAL_END).unwrap();
  1259. s.close();
  1260. send!(s, TcpRepr {
  1261. control: TcpControl::Syn,
  1262. ..SEND_TEMPL
  1263. }, Err(Error::Rejected));
  1264. }
  1265. #[test]
  1266. fn test_closed_close() {
  1267. let mut s = socket();
  1268. s.close();
  1269. assert_eq!(s.state, State::Closed);
  1270. }
  1271. // =========================================================================================//
  1272. // Tests for the LISTEN state.
  1273. // =========================================================================================//
  1274. fn socket_listen() -> TcpSocket<'static> {
  1275. let mut s = socket();
  1276. s.state = State::Listen;
  1277. s.local_endpoint = IpEndpoint::new(IpAddress::default(), LOCAL_PORT);
  1278. s
  1279. }
  1280. #[test]
  1281. fn test_listen_sanity() {
  1282. let mut s = socket();
  1283. s.listen(LOCAL_PORT).unwrap();
  1284. sanity!(s, socket_listen());
  1285. }
  1286. #[test]
  1287. fn test_listen_validation() {
  1288. let mut s = socket();
  1289. assert_eq!(s.listen(0), Err(Error::Unaddressable));
  1290. }
  1291. #[test]
  1292. fn test_listen_twice() {
  1293. let mut s = socket();
  1294. assert_eq!(s.listen(80), Ok(()));
  1295. assert_eq!(s.listen(80), Err(Error::Illegal));
  1296. }
  1297. #[test]
  1298. fn test_listen_syn() {
  1299. let mut s = socket_listen();
  1300. send!(s, TcpRepr {
  1301. control: TcpControl::Syn,
  1302. seq_number: REMOTE_SEQ,
  1303. ack_number: None,
  1304. ..SEND_TEMPL
  1305. });
  1306. sanity!(s, socket_syn_received());
  1307. }
  1308. #[test]
  1309. fn test_listen_syn_reject_ack() {
  1310. let mut s = socket_listen();
  1311. send!(s, TcpRepr {
  1312. control: TcpControl::Syn,
  1313. seq_number: REMOTE_SEQ,
  1314. ack_number: Some(LOCAL_SEQ),
  1315. ..SEND_TEMPL
  1316. }, Err(Error::Rejected));
  1317. assert_eq!(s.state, State::Listen);
  1318. }
  1319. #[test]
  1320. fn test_listen_rst() {
  1321. let mut s = socket_listen();
  1322. send!(s, TcpRepr {
  1323. control: TcpControl::Rst,
  1324. seq_number: REMOTE_SEQ,
  1325. ack_number: None,
  1326. ..SEND_TEMPL
  1327. }, Err(Error::Dropped));
  1328. }
  1329. #[test]
  1330. fn test_listen_close() {
  1331. let mut s = socket_listen();
  1332. s.close();
  1333. assert_eq!(s.state, State::Closed);
  1334. }
  1335. // =========================================================================================//
  1336. // Tests for the SYN-RECEIVED state.
  1337. // =========================================================================================//
  1338. fn socket_syn_received() -> TcpSocket<'static> {
  1339. let mut s = socket();
  1340. s.state = State::SynReceived;
  1341. s.local_endpoint = LOCAL_END;
  1342. s.remote_endpoint = REMOTE_END;
  1343. s.local_seq_no = LOCAL_SEQ;
  1344. s.remote_seq_no = REMOTE_SEQ + 1;
  1345. s.remote_last_seq = LOCAL_SEQ;
  1346. s.remote_win_len = 256;
  1347. s
  1348. }
  1349. #[test]
  1350. fn test_syn_received_ack() {
  1351. let mut s = socket_syn_received();
  1352. recv!(s, [TcpRepr {
  1353. control: TcpControl::Syn,
  1354. seq_number: LOCAL_SEQ,
  1355. ack_number: Some(REMOTE_SEQ + 1),
  1356. max_seg_size: Some(1480),
  1357. ..RECV_TEMPL
  1358. }]);
  1359. send!(s, TcpRepr {
  1360. seq_number: REMOTE_SEQ + 1,
  1361. ack_number: Some(LOCAL_SEQ + 1),
  1362. ..SEND_TEMPL
  1363. });
  1364. assert_eq!(s.state, State::Established);
  1365. sanity!(s, socket_established());
  1366. }
  1367. #[test]
  1368. fn test_syn_received_fin() {
  1369. let mut s = socket_syn_received();
  1370. recv!(s, [TcpRepr {
  1371. control: TcpControl::Syn,
  1372. seq_number: LOCAL_SEQ,
  1373. ack_number: Some(REMOTE_SEQ + 1),
  1374. max_seg_size: Some(1480),
  1375. ..RECV_TEMPL
  1376. }]);
  1377. send!(s, TcpRepr {
  1378. control: TcpControl::Fin,
  1379. seq_number: REMOTE_SEQ + 1,
  1380. ack_number: Some(LOCAL_SEQ + 1),
  1381. payload: &b"abcdef"[..],
  1382. ..SEND_TEMPL
  1383. });
  1384. recv!(s, [TcpRepr {
  1385. seq_number: LOCAL_SEQ + 1,
  1386. ack_number: Some(REMOTE_SEQ + 1 + 6 + 1),
  1387. window_len: 58,
  1388. ..RECV_TEMPL
  1389. }]);
  1390. assert_eq!(s.state, State::CloseWait);
  1391. sanity!(s, TcpSocket {
  1392. remote_last_ack: Some(REMOTE_SEQ + 1 + 6 + 1),
  1393. remote_last_win: 58,
  1394. ..socket_close_wait()
  1395. });
  1396. }
  1397. #[test]
  1398. fn test_syn_received_rst() {
  1399. let mut s = socket_syn_received();
  1400. recv!(s, [TcpRepr {
  1401. control: TcpControl::Syn,
  1402. seq_number: LOCAL_SEQ,
  1403. ack_number: Some(REMOTE_SEQ + 1),
  1404. max_seg_size: Some(1480),
  1405. ..RECV_TEMPL
  1406. }]);
  1407. send!(s, TcpRepr {
  1408. control: TcpControl::Rst,
  1409. seq_number: REMOTE_SEQ + 1,
  1410. ack_number: Some(LOCAL_SEQ),
  1411. ..SEND_TEMPL
  1412. });
  1413. assert_eq!(s.state, State::Listen);
  1414. assert_eq!(s.local_endpoint, IpEndpoint::new(IpAddress::Unspecified, LOCAL_END.port));
  1415. assert_eq!(s.remote_endpoint, IpEndpoint::default());
  1416. }
  1417. #[test]
  1418. fn test_syn_received_close() {
  1419. let mut s = socket_syn_received();
  1420. s.close();
  1421. assert_eq!(s.state, State::FinWait1);
  1422. }
  1423. // =========================================================================================//
  1424. // Tests for the SYN-SENT state.
  1425. // =========================================================================================//
  1426. fn socket_syn_sent() -> TcpSocket<'static> {
  1427. let mut s = socket();
  1428. s.state = State::SynSent;
  1429. s.local_endpoint = IpEndpoint::new(IpAddress::v4(0, 0, 0, 0), LOCAL_PORT);
  1430. s.remote_endpoint = REMOTE_END;
  1431. s.local_seq_no = LOCAL_SEQ;
  1432. s.remote_last_seq = LOCAL_SEQ;
  1433. s
  1434. }
  1435. #[test]
  1436. fn test_connect_validation() {
  1437. let mut s = socket();
  1438. assert_eq!(s.connect((IpAddress::v4(0, 0, 0, 0), 80), LOCAL_END),
  1439. Err(Error::Unaddressable));
  1440. assert_eq!(s.connect(REMOTE_END, (IpAddress::v4(10, 0, 0, 0), 0)),
  1441. Err(Error::Unaddressable));
  1442. assert_eq!(s.connect((IpAddress::v4(10, 0, 0, 0), 0), LOCAL_END),
  1443. Err(Error::Unaddressable));
  1444. assert_eq!(s.connect((IpAddress::Unspecified, 80), LOCAL_END),
  1445. Err(Error::Unaddressable));
  1446. }
  1447. #[test]
  1448. fn test_connect() {
  1449. let mut s = socket();
  1450. s.local_seq_no = LOCAL_SEQ;
  1451. s.connect(REMOTE_END, LOCAL_END.port).unwrap();
  1452. assert_eq!(s.local_endpoint, IpEndpoint::new(IpAddress::v4(0, 0, 0, 0), LOCAL_END.port));
  1453. recv!(s, [TcpRepr {
  1454. control: TcpControl::Syn,
  1455. seq_number: LOCAL_SEQ,
  1456. ack_number: None,
  1457. max_seg_size: Some(1480),
  1458. ..RECV_TEMPL
  1459. }]);
  1460. send!(s, TcpRepr {
  1461. control: TcpControl::Syn,
  1462. seq_number: REMOTE_SEQ,
  1463. ack_number: Some(LOCAL_SEQ + 1),
  1464. max_seg_size: Some(1400),
  1465. ..SEND_TEMPL
  1466. });
  1467. assert_eq!(s.local_endpoint, LOCAL_END);
  1468. }
  1469. #[test]
  1470. fn test_connect_unspecified_local() {
  1471. let mut s = socket();
  1472. assert_eq!(s.connect(REMOTE_END, (IpAddress::v4(0, 0, 0, 0), 80)),
  1473. Ok(()));
  1474. s.abort();
  1475. assert_eq!(s.connect(REMOTE_END, (IpAddress::Unspecified, 80)),
  1476. Ok(()));
  1477. s.abort();
  1478. }
  1479. #[test]
  1480. fn test_connect_specified_local() {
  1481. let mut s = socket();
  1482. assert_eq!(s.connect(REMOTE_END, (IpAddress::v4(10, 0, 0, 2), 80)),
  1483. Ok(()));
  1484. }
  1485. #[test]
  1486. fn test_connect_twice() {
  1487. let mut s = socket();
  1488. assert_eq!(s.connect(REMOTE_END, (IpAddress::Unspecified, 80)),
  1489. Ok(()));
  1490. assert_eq!(s.connect(REMOTE_END, (IpAddress::Unspecified, 80)),
  1491. Err(Error::Illegal));
  1492. }
  1493. #[test]
  1494. fn test_syn_sent_sanity() {
  1495. let mut s = socket();
  1496. s.local_seq_no = LOCAL_SEQ;
  1497. s.connect(REMOTE_END, LOCAL_END).unwrap();
  1498. sanity!(s, socket_syn_sent());
  1499. }
  1500. #[test]
  1501. fn test_syn_sent_syn_ack() {
  1502. let mut s = socket_syn_sent();
  1503. recv!(s, [TcpRepr {
  1504. control: TcpControl::Syn,
  1505. seq_number: LOCAL_SEQ,
  1506. ack_number: None,
  1507. max_seg_size: Some(1480),
  1508. ..RECV_TEMPL
  1509. }]);
  1510. send!(s, TcpRepr {
  1511. control: TcpControl::Syn,
  1512. seq_number: REMOTE_SEQ,
  1513. ack_number: Some(LOCAL_SEQ + 1),
  1514. max_seg_size: Some(1400),
  1515. ..SEND_TEMPL
  1516. });
  1517. recv!(s, [TcpRepr {
  1518. seq_number: LOCAL_SEQ + 1,
  1519. ack_number: Some(REMOTE_SEQ + 1),
  1520. ..RECV_TEMPL
  1521. }]);
  1522. recv!(s, time 1000, Err(Error::Exhausted));
  1523. assert_eq!(s.state, State::Established);
  1524. sanity!(s, socket_established());
  1525. }
  1526. #[test]
  1527. fn test_syn_sent_rst() {
  1528. let mut s = socket_syn_sent();
  1529. send!(s, TcpRepr {
  1530. control: TcpControl::Rst,
  1531. seq_number: REMOTE_SEQ,
  1532. ack_number: Some(LOCAL_SEQ + 1),
  1533. ..SEND_TEMPL
  1534. });
  1535. assert_eq!(s.state, State::Closed);
  1536. }
  1537. #[test]
  1538. fn test_syn_sent_rst_no_ack() {
  1539. let mut s = socket_syn_sent();
  1540. send!(s, TcpRepr {
  1541. control: TcpControl::Rst,
  1542. seq_number: REMOTE_SEQ,
  1543. ack_number: None,
  1544. ..SEND_TEMPL
  1545. }, Err(Error::Dropped));
  1546. assert_eq!(s.state, State::SynSent);
  1547. }
  1548. #[test]
  1549. fn test_syn_sent_rst_bad_ack() {
  1550. let mut s = socket_syn_sent();
  1551. send!(s, TcpRepr {
  1552. control: TcpControl::Rst,
  1553. seq_number: REMOTE_SEQ,
  1554. ack_number: Some(TcpSeqNumber(1234)),
  1555. ..SEND_TEMPL
  1556. }, Err(Error::Dropped));
  1557. assert_eq!(s.state, State::SynSent);
  1558. }
  1559. #[test]
  1560. fn test_syn_sent_close() {
  1561. let mut s = socket();
  1562. s.close();
  1563. assert_eq!(s.state, State::Closed);
  1564. }
  1565. // =========================================================================================//
  1566. // Tests for the ESTABLISHED state.
  1567. // =========================================================================================//
  1568. fn socket_established() -> TcpSocket<'static> {
  1569. let mut s = socket_syn_received();
  1570. s.state = State::Established;
  1571. s.local_seq_no = LOCAL_SEQ + 1;
  1572. s.remote_last_seq = LOCAL_SEQ + 1;
  1573. s.remote_last_ack = Some(REMOTE_SEQ + 1);
  1574. s.remote_last_win = 64;
  1575. s
  1576. }
  1577. #[test]
  1578. fn test_established_recv() {
  1579. let mut s = socket_established();
  1580. send!(s, TcpRepr {
  1581. seq_number: REMOTE_SEQ + 1,
  1582. ack_number: Some(LOCAL_SEQ + 1),
  1583. payload: &b"abcdef"[..],
  1584. ..SEND_TEMPL
  1585. });
  1586. recv!(s, [TcpRepr {
  1587. seq_number: LOCAL_SEQ + 1,
  1588. ack_number: Some(REMOTE_SEQ + 1 + 6),
  1589. window_len: 58,
  1590. ..RECV_TEMPL
  1591. }]);
  1592. assert_eq!(s.rx_buffer.dequeue_many(6), &b"abcdef"[..]);
  1593. }
  1594. #[test]
  1595. fn test_established_send() {
  1596. let mut s = socket_established();
  1597. // First roundtrip after establishing.
  1598. s.send_slice(b"abcdef").unwrap();
  1599. recv!(s, [TcpRepr {
  1600. seq_number: LOCAL_SEQ + 1,
  1601. ack_number: Some(REMOTE_SEQ + 1),
  1602. payload: &b"abcdef"[..],
  1603. ..RECV_TEMPL
  1604. }]);
  1605. assert_eq!(s.tx_buffer.len(), 6);
  1606. send!(s, TcpRepr {
  1607. seq_number: REMOTE_SEQ + 1,
  1608. ack_number: Some(LOCAL_SEQ + 1 + 6),
  1609. ..SEND_TEMPL
  1610. });
  1611. assert_eq!(s.tx_buffer.len(), 0);
  1612. // Second roundtrip.
  1613. s.send_slice(b"foobar").unwrap();
  1614. recv!(s, [TcpRepr {
  1615. seq_number: LOCAL_SEQ + 1 + 6,
  1616. ack_number: Some(REMOTE_SEQ + 1),
  1617. payload: &b"foobar"[..],
  1618. ..RECV_TEMPL
  1619. }]);
  1620. send!(s, TcpRepr {
  1621. seq_number: REMOTE_SEQ + 1,
  1622. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  1623. ..SEND_TEMPL
  1624. });
  1625. assert_eq!(s.tx_buffer.len(), 0);
  1626. }
  1627. #[test]
  1628. fn test_established_send_no_ack_send() {
  1629. let mut s = socket_established();
  1630. s.send_slice(b"abcdef").unwrap();
  1631. recv!(s, [TcpRepr {
  1632. seq_number: LOCAL_SEQ + 1,
  1633. ack_number: Some(REMOTE_SEQ + 1),
  1634. payload: &b"abcdef"[..],
  1635. ..RECV_TEMPL
  1636. }]);
  1637. s.send_slice(b"foobar").unwrap();
  1638. recv!(s, [TcpRepr {
  1639. seq_number: LOCAL_SEQ + 1 + 6,
  1640. ack_number: Some(REMOTE_SEQ + 1),
  1641. payload: &b"foobar"[..],
  1642. ..RECV_TEMPL
  1643. }]);
  1644. }
  1645. #[test]
  1646. fn test_established_send_buf_gt_win() {
  1647. let mut data = [0; 32];
  1648. for (i, elem) in data.iter_mut().enumerate() {
  1649. *elem = i as u8
  1650. }
  1651. let mut s = socket_established();
  1652. s.remote_win_len = 16;
  1653. s.send_slice(&data[..]).unwrap();
  1654. recv!(s, [TcpRepr {
  1655. seq_number: LOCAL_SEQ + 1,
  1656. ack_number: Some(REMOTE_SEQ + 1),
  1657. payload: &data[0..16],
  1658. ..RECV_TEMPL
  1659. }, TcpRepr {
  1660. seq_number: LOCAL_SEQ + 1 + 16,
  1661. ack_number: Some(REMOTE_SEQ + 1),
  1662. payload: &data[16..32],
  1663. ..RECV_TEMPL
  1664. }]);
  1665. }
  1666. #[test]
  1667. fn test_established_no_ack() {
  1668. let mut s = socket_established();
  1669. send!(s, TcpRepr {
  1670. seq_number: REMOTE_SEQ + 1,
  1671. ack_number: None,
  1672. ..SEND_TEMPL
  1673. }, Err(Error::Dropped));
  1674. }
  1675. #[test]
  1676. fn test_established_bad_ack() {
  1677. let mut s = socket_established();
  1678. // Already acknowledged data.
  1679. send!(s, TcpRepr {
  1680. seq_number: REMOTE_SEQ + 1,
  1681. ack_number: Some(TcpSeqNumber(LOCAL_SEQ.0 - 1)),
  1682. ..SEND_TEMPL
  1683. }, Err(Error::Dropped));
  1684. assert_eq!(s.local_seq_no, LOCAL_SEQ + 1);
  1685. // Data not yet transmitted.
  1686. send!(s, TcpRepr {
  1687. seq_number: REMOTE_SEQ + 1,
  1688. ack_number: Some(LOCAL_SEQ + 10),
  1689. ..SEND_TEMPL
  1690. }, Err(Error::Dropped));
  1691. assert_eq!(s.local_seq_no, LOCAL_SEQ + 1);
  1692. }
  1693. #[test]
  1694. fn test_established_bad_seq() {
  1695. let mut s = socket_established();
  1696. // Data outside of receive window.
  1697. send!(s, TcpRepr {
  1698. seq_number: REMOTE_SEQ + 1 + 256,
  1699. ack_number: Some(LOCAL_SEQ + 1),
  1700. ..SEND_TEMPL
  1701. }, Ok(Some(TcpRepr {
  1702. seq_number: LOCAL_SEQ + 1,
  1703. ack_number: Some(REMOTE_SEQ + 1),
  1704. ..RECV_TEMPL
  1705. })));
  1706. assert_eq!(s.remote_seq_no, REMOTE_SEQ + 1);
  1707. }
  1708. #[test]
  1709. fn test_established_fin() {
  1710. let mut s = socket_established();
  1711. send!(s, TcpRepr {
  1712. control: TcpControl::Fin,
  1713. seq_number: REMOTE_SEQ + 1,
  1714. ack_number: Some(LOCAL_SEQ + 1),
  1715. ..SEND_TEMPL
  1716. });
  1717. recv!(s, [TcpRepr {
  1718. seq_number: LOCAL_SEQ + 1,
  1719. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1720. ..RECV_TEMPL
  1721. }]);
  1722. assert_eq!(s.state, State::CloseWait);
  1723. sanity!(s, socket_close_wait());
  1724. }
  1725. #[test]
  1726. fn test_established_send_fin() {
  1727. let mut s = socket_established();
  1728. s.send_slice(b"abcdef").unwrap();
  1729. send!(s, TcpRepr {
  1730. control: TcpControl::Fin,
  1731. seq_number: REMOTE_SEQ + 1,
  1732. ack_number: Some(LOCAL_SEQ + 1),
  1733. ..SEND_TEMPL
  1734. });
  1735. assert_eq!(s.state, State::CloseWait);
  1736. recv!(s, [TcpRepr {
  1737. seq_number: LOCAL_SEQ + 1,
  1738. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1739. payload: &b"abcdef"[..],
  1740. ..RECV_TEMPL
  1741. }]);
  1742. }
  1743. #[test]
  1744. fn test_established_rst() {
  1745. let mut s = socket_established();
  1746. send!(s, TcpRepr {
  1747. control: TcpControl::Rst,
  1748. seq_number: REMOTE_SEQ + 1,
  1749. ack_number: Some(LOCAL_SEQ + 1),
  1750. ..SEND_TEMPL
  1751. });
  1752. assert_eq!(s.state, State::Closed);
  1753. }
  1754. #[test]
  1755. fn test_established_rst_no_ack() {
  1756. let mut s = socket_established();
  1757. send!(s, TcpRepr {
  1758. control: TcpControl::Rst,
  1759. seq_number: REMOTE_SEQ + 1,
  1760. ack_number: None,
  1761. ..SEND_TEMPL
  1762. });
  1763. assert_eq!(s.state, State::Closed);
  1764. }
  1765. #[test]
  1766. fn test_established_close() {
  1767. let mut s = socket_established();
  1768. s.close();
  1769. assert_eq!(s.state, State::FinWait1);
  1770. sanity!(s, socket_fin_wait_1());
  1771. }
  1772. #[test]
  1773. fn test_established_abort() {
  1774. let mut s = socket_established();
  1775. s.abort();
  1776. assert_eq!(s.state, State::Closed);
  1777. recv!(s, [TcpRepr {
  1778. control: TcpControl::Rst,
  1779. seq_number: LOCAL_SEQ + 1,
  1780. ack_number: Some(REMOTE_SEQ + 1),
  1781. ..RECV_TEMPL
  1782. }]);
  1783. }
  1784. // =========================================================================================//
  1785. // Tests for the FIN-WAIT-1 state.
  1786. // =========================================================================================//
  1787. fn socket_fin_wait_1() -> TcpSocket<'static> {
  1788. let mut s = socket_established();
  1789. s.state = State::FinWait1;
  1790. s
  1791. }
  1792. #[test]
  1793. fn test_fin_wait_1_fin_ack() {
  1794. let mut s = socket_fin_wait_1();
  1795. recv!(s, [TcpRepr {
  1796. control: TcpControl::Fin,
  1797. seq_number: LOCAL_SEQ + 1,
  1798. ack_number: Some(REMOTE_SEQ + 1),
  1799. ..RECV_TEMPL
  1800. }]);
  1801. send!(s, TcpRepr {
  1802. seq_number: REMOTE_SEQ + 1,
  1803. ack_number: Some(LOCAL_SEQ + 1 + 1),
  1804. ..SEND_TEMPL
  1805. });
  1806. assert_eq!(s.state, State::FinWait2);
  1807. sanity!(s, socket_fin_wait_2());
  1808. }
  1809. #[test]
  1810. fn test_fin_wait_1_fin_fin() {
  1811. let mut s = socket_fin_wait_1();
  1812. recv!(s, [TcpRepr {
  1813. control: TcpControl::Fin,
  1814. seq_number: LOCAL_SEQ + 1,
  1815. ack_number: Some(REMOTE_SEQ + 1),
  1816. ..RECV_TEMPL
  1817. }]);
  1818. send!(s, TcpRepr {
  1819. control: TcpControl::Fin,
  1820. seq_number: REMOTE_SEQ + 1,
  1821. ack_number: Some(LOCAL_SEQ + 1),
  1822. ..SEND_TEMPL
  1823. });
  1824. assert_eq!(s.state, State::Closing);
  1825. sanity!(s, socket_closing());
  1826. }
  1827. #[test]
  1828. fn test_fin_wait_1_fin_with_data_queued() {
  1829. let mut s = socket_established();
  1830. s.remote_win_len = 6;
  1831. s.send_slice(b"abcdef123456").unwrap();
  1832. s.close();
  1833. recv!(s, Ok(TcpRepr {
  1834. seq_number: LOCAL_SEQ + 1,
  1835. ack_number: Some(REMOTE_SEQ + 1),
  1836. payload: &b"abcdef"[..],
  1837. ..RECV_TEMPL
  1838. }));
  1839. send!(s, TcpRepr {
  1840. seq_number: REMOTE_SEQ + 1,
  1841. ack_number: Some(LOCAL_SEQ + 1 + 6),
  1842. ..SEND_TEMPL
  1843. });
  1844. assert_eq!(s.state, State::FinWait1);
  1845. }
  1846. #[test]
  1847. fn test_fin_wait_1_close() {
  1848. let mut s = socket_fin_wait_1();
  1849. s.close();
  1850. assert_eq!(s.state, State::FinWait1);
  1851. }
  1852. // =========================================================================================//
  1853. // Tests for the FIN-WAIT-2 state.
  1854. // =========================================================================================//
  1855. fn socket_fin_wait_2() -> TcpSocket<'static> {
  1856. let mut s = socket_fin_wait_1();
  1857. s.state = State::FinWait2;
  1858. s.local_seq_no = LOCAL_SEQ + 1 + 1;
  1859. s.remote_last_seq = LOCAL_SEQ + 1 + 1;
  1860. s
  1861. }
  1862. #[test]
  1863. fn test_fin_wait_2_fin() {
  1864. let mut s = socket_fin_wait_2();
  1865. send!(s, time 1_000, TcpRepr {
  1866. control: TcpControl::Fin,
  1867. seq_number: REMOTE_SEQ + 1,
  1868. ack_number: Some(LOCAL_SEQ + 1 + 1),
  1869. ..SEND_TEMPL
  1870. });
  1871. assert_eq!(s.state, State::TimeWait);
  1872. sanity!(s, socket_time_wait(false));
  1873. }
  1874. #[test]
  1875. fn test_fin_wait_2_close() {
  1876. let mut s = socket_fin_wait_2();
  1877. s.close();
  1878. assert_eq!(s.state, State::FinWait2);
  1879. }
  1880. // =========================================================================================//
  1881. // Tests for the CLOSING state.
  1882. // =========================================================================================//
  1883. fn socket_closing() -> TcpSocket<'static> {
  1884. let mut s = socket_fin_wait_1();
  1885. s.state = State::Closing;
  1886. s.remote_last_seq = LOCAL_SEQ + 1 + 1;
  1887. s.remote_seq_no = REMOTE_SEQ + 1 + 1;
  1888. s
  1889. }
  1890. #[test]
  1891. fn test_closing_ack_fin() {
  1892. let mut s = socket_closing();
  1893. recv!(s, [TcpRepr {
  1894. seq_number: LOCAL_SEQ + 1 + 1,
  1895. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1896. ..RECV_TEMPL
  1897. }]);
  1898. send!(s, time 1_000, TcpRepr {
  1899. seq_number: REMOTE_SEQ + 1 + 1,
  1900. ack_number: Some(LOCAL_SEQ + 1 + 1),
  1901. ..SEND_TEMPL
  1902. });
  1903. assert_eq!(s.state, State::TimeWait);
  1904. sanity!(s, socket_time_wait(true));
  1905. }
  1906. #[test]
  1907. fn test_closing_close() {
  1908. let mut s = socket_closing();
  1909. s.close();
  1910. assert_eq!(s.state, State::Closing);
  1911. }
  1912. // =========================================================================================//
  1913. // Tests for the TIME-WAIT state.
  1914. // =========================================================================================//
  1915. fn socket_time_wait(from_closing: bool) -> TcpSocket<'static> {
  1916. let mut s = socket_fin_wait_2();
  1917. s.state = State::TimeWait;
  1918. s.remote_seq_no = REMOTE_SEQ + 1 + 1;
  1919. if from_closing {
  1920. s.remote_last_ack = Some(REMOTE_SEQ + 1 + 1);
  1921. }
  1922. s.timer = Timer::Close { expires_at: 1_000 + CLOSE_DELAY };
  1923. s
  1924. }
  1925. #[test]
  1926. fn test_time_wait_from_fin_wait_2_ack() {
  1927. let mut s = socket_time_wait(false);
  1928. recv!(s, [TcpRepr {
  1929. seq_number: LOCAL_SEQ + 1 + 1,
  1930. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1931. ..RECV_TEMPL
  1932. }]);
  1933. }
  1934. #[test]
  1935. fn test_time_wait_from_closing_no_ack() {
  1936. let mut s = socket_time_wait(true);
  1937. recv!(s, []);
  1938. }
  1939. #[test]
  1940. fn test_time_wait_close() {
  1941. let mut s = socket_time_wait(false);
  1942. s.close();
  1943. assert_eq!(s.state, State::TimeWait);
  1944. }
  1945. #[test]
  1946. fn test_time_wait_retransmit() {
  1947. let mut s = socket_time_wait(false);
  1948. recv!(s, [TcpRepr {
  1949. seq_number: LOCAL_SEQ + 1 + 1,
  1950. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1951. ..RECV_TEMPL
  1952. }]);
  1953. send!(s, time 5_000, TcpRepr {
  1954. control: TcpControl::Fin,
  1955. seq_number: REMOTE_SEQ + 1,
  1956. ack_number: Some(LOCAL_SEQ + 1 + 1),
  1957. ..SEND_TEMPL
  1958. }, Ok(Some(TcpRepr {
  1959. seq_number: LOCAL_SEQ + 1 + 1,
  1960. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1961. ..RECV_TEMPL
  1962. })));
  1963. assert_eq!(s.timer, Timer::Close { expires_at: 5_000 + CLOSE_DELAY });
  1964. }
  1965. #[test]
  1966. fn test_time_wait_timeout() {
  1967. let mut s = socket_time_wait(false);
  1968. recv!(s, [TcpRepr {
  1969. seq_number: LOCAL_SEQ + 1 + 1,
  1970. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1971. ..RECV_TEMPL
  1972. }]);
  1973. assert_eq!(s.state, State::TimeWait);
  1974. recv!(s, time 60_000, Err(Error::Exhausted));
  1975. assert_eq!(s.state, State::Closed);
  1976. }
  1977. // =========================================================================================//
  1978. // Tests for the CLOSE-WAIT state.
  1979. // =========================================================================================//
  1980. fn socket_close_wait() -> TcpSocket<'static> {
  1981. let mut s = socket_established();
  1982. s.state = State::CloseWait;
  1983. s.remote_seq_no = REMOTE_SEQ + 1 + 1;
  1984. s.remote_last_ack = Some(REMOTE_SEQ + 1 + 1);
  1985. s
  1986. }
  1987. #[test]
  1988. fn test_close_wait_ack() {
  1989. let mut s = socket_close_wait();
  1990. s.send_slice(b"abcdef").unwrap();
  1991. recv!(s, [TcpRepr {
  1992. seq_number: LOCAL_SEQ + 1,
  1993. ack_number: Some(REMOTE_SEQ + 1 + 1),
  1994. payload: &b"abcdef"[..],
  1995. ..RECV_TEMPL
  1996. }]);
  1997. send!(s, TcpRepr {
  1998. seq_number: REMOTE_SEQ + 1 + 1,
  1999. ack_number: Some(LOCAL_SEQ + 1 + 6),
  2000. ..SEND_TEMPL
  2001. });
  2002. }
  2003. #[test]
  2004. fn test_close_wait_close() {
  2005. let mut s = socket_close_wait();
  2006. s.close();
  2007. assert_eq!(s.state, State::LastAck);
  2008. sanity!(s, socket_last_ack());
  2009. }
  2010. // =========================================================================================//
  2011. // Tests for the LAST-ACK state.
  2012. // =========================================================================================//
  2013. fn socket_last_ack() -> TcpSocket<'static> {
  2014. let mut s = socket_close_wait();
  2015. s.state = State::LastAck;
  2016. s
  2017. }
  2018. #[test]
  2019. fn test_last_ack_fin_ack() {
  2020. let mut s = socket_last_ack();
  2021. recv!(s, [TcpRepr {
  2022. control: TcpControl::Fin,
  2023. seq_number: LOCAL_SEQ + 1,
  2024. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2025. ..RECV_TEMPL
  2026. }]);
  2027. assert_eq!(s.state, State::LastAck);
  2028. send!(s, TcpRepr {
  2029. seq_number: REMOTE_SEQ + 1 + 1,
  2030. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2031. ..SEND_TEMPL
  2032. });
  2033. assert_eq!(s.state, State::Closed);
  2034. }
  2035. #[test]
  2036. fn test_last_ack_close() {
  2037. let mut s = socket_last_ack();
  2038. s.close();
  2039. assert_eq!(s.state, State::LastAck);
  2040. }
  2041. // =========================================================================================//
  2042. // Tests for transitioning through multiple states.
  2043. // =========================================================================================//
  2044. #[test]
  2045. fn test_listen() {
  2046. let mut s = socket();
  2047. s.listen(IpEndpoint::new(IpAddress::default(), LOCAL_PORT)).unwrap();
  2048. assert_eq!(s.state, State::Listen);
  2049. }
  2050. #[test]
  2051. fn test_three_way_handshake() {
  2052. let mut s = socket_listen();
  2053. send!(s, TcpRepr {
  2054. control: TcpControl::Syn,
  2055. seq_number: REMOTE_SEQ,
  2056. ack_number: None,
  2057. ..SEND_TEMPL
  2058. });
  2059. assert_eq!(s.state(), State::SynReceived);
  2060. assert_eq!(s.local_endpoint(), LOCAL_END);
  2061. assert_eq!(s.remote_endpoint(), REMOTE_END);
  2062. recv!(s, [TcpRepr {
  2063. control: TcpControl::Syn,
  2064. seq_number: LOCAL_SEQ,
  2065. ack_number: Some(REMOTE_SEQ + 1),
  2066. max_seg_size: Some(1480),
  2067. ..RECV_TEMPL
  2068. }]);
  2069. send!(s, TcpRepr {
  2070. seq_number: REMOTE_SEQ + 1,
  2071. ack_number: Some(LOCAL_SEQ + 1),
  2072. ..SEND_TEMPL
  2073. });
  2074. assert_eq!(s.state(), State::Established);
  2075. assert_eq!(s.local_seq_no, LOCAL_SEQ + 1);
  2076. assert_eq!(s.remote_seq_no, REMOTE_SEQ + 1);
  2077. }
  2078. #[test]
  2079. fn test_remote_close() {
  2080. let mut s = socket_established();
  2081. send!(s, TcpRepr {
  2082. control: TcpControl::Fin,
  2083. seq_number: REMOTE_SEQ + 1,
  2084. ack_number: Some(LOCAL_SEQ + 1),
  2085. ..SEND_TEMPL
  2086. });
  2087. assert_eq!(s.state, State::CloseWait);
  2088. recv!(s, [TcpRepr {
  2089. seq_number: LOCAL_SEQ + 1,
  2090. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2091. ..RECV_TEMPL
  2092. }]);
  2093. s.close();
  2094. assert_eq!(s.state, State::LastAck);
  2095. recv!(s, [TcpRepr {
  2096. control: TcpControl::Fin,
  2097. seq_number: LOCAL_SEQ + 1,
  2098. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2099. ..RECV_TEMPL
  2100. }]);
  2101. send!(s, TcpRepr {
  2102. seq_number: REMOTE_SEQ + 1 + 1,
  2103. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2104. ..SEND_TEMPL
  2105. });
  2106. assert_eq!(s.state, State::Closed);
  2107. }
  2108. #[test]
  2109. fn test_local_close() {
  2110. let mut s = socket_established();
  2111. s.close();
  2112. assert_eq!(s.state, State::FinWait1);
  2113. recv!(s, [TcpRepr {
  2114. control: TcpControl::Fin,
  2115. seq_number: LOCAL_SEQ + 1,
  2116. ack_number: Some(REMOTE_SEQ + 1),
  2117. ..RECV_TEMPL
  2118. }]);
  2119. send!(s, TcpRepr {
  2120. seq_number: REMOTE_SEQ + 1,
  2121. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2122. ..SEND_TEMPL
  2123. });
  2124. assert_eq!(s.state, State::FinWait2);
  2125. send!(s, TcpRepr {
  2126. control: TcpControl::Fin,
  2127. seq_number: REMOTE_SEQ + 1,
  2128. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2129. ..SEND_TEMPL
  2130. });
  2131. assert_eq!(s.state, State::TimeWait);
  2132. recv!(s, [TcpRepr {
  2133. seq_number: LOCAL_SEQ + 1 + 1,
  2134. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2135. ..RECV_TEMPL
  2136. }]);
  2137. }
  2138. #[test]
  2139. fn test_simultaneous_close() {
  2140. let mut s = socket_established();
  2141. s.close();
  2142. assert_eq!(s.state, State::FinWait1);
  2143. recv!(s, [TcpRepr { // due to reordering, this is logically located...
  2144. control: TcpControl::Fin,
  2145. seq_number: LOCAL_SEQ + 1,
  2146. ack_number: Some(REMOTE_SEQ + 1),
  2147. ..RECV_TEMPL
  2148. }]);
  2149. send!(s, TcpRepr {
  2150. control: TcpControl::Fin,
  2151. seq_number: REMOTE_SEQ + 1,
  2152. ack_number: Some(LOCAL_SEQ + 1),
  2153. ..SEND_TEMPL
  2154. });
  2155. assert_eq!(s.state, State::Closing);
  2156. recv!(s, [TcpRepr {
  2157. seq_number: LOCAL_SEQ + 1 + 1,
  2158. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2159. ..RECV_TEMPL
  2160. }]);
  2161. // ... at this point
  2162. send!(s, TcpRepr {
  2163. seq_number: REMOTE_SEQ + 1 + 1,
  2164. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2165. ..SEND_TEMPL
  2166. });
  2167. assert_eq!(s.state, State::TimeWait);
  2168. recv!(s, []);
  2169. }
  2170. #[test]
  2171. fn test_simultaneous_close_combined_fin_ack() {
  2172. let mut s = socket_established();
  2173. s.close();
  2174. assert_eq!(s.state, State::FinWait1);
  2175. recv!(s, [TcpRepr {
  2176. control: TcpControl::Fin,
  2177. seq_number: LOCAL_SEQ + 1,
  2178. ack_number: Some(REMOTE_SEQ + 1),
  2179. ..RECV_TEMPL
  2180. }]);
  2181. send!(s, TcpRepr {
  2182. control: TcpControl::Fin,
  2183. seq_number: REMOTE_SEQ + 1,
  2184. ack_number: Some(LOCAL_SEQ + 1 + 1),
  2185. ..SEND_TEMPL
  2186. });
  2187. assert_eq!(s.state, State::TimeWait);
  2188. recv!(s, [TcpRepr {
  2189. seq_number: LOCAL_SEQ + 1 + 1,
  2190. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2191. ..RECV_TEMPL
  2192. }]);
  2193. }
  2194. #[test]
  2195. fn test_fin_with_data() {
  2196. let mut s = socket_established();
  2197. s.send_slice(b"abcdef").unwrap();
  2198. s.close();
  2199. recv!(s, [TcpRepr {
  2200. control: TcpControl::Fin,
  2201. seq_number: LOCAL_SEQ + 1,
  2202. ack_number: Some(REMOTE_SEQ + 1),
  2203. payload: &b"abcdef"[..],
  2204. ..RECV_TEMPL
  2205. }])
  2206. }
  2207. #[test]
  2208. fn test_mutual_close_with_data_1() {
  2209. let mut s = socket_established();
  2210. s.send_slice(b"abcdef").unwrap();
  2211. s.close();
  2212. assert_eq!(s.state, State::FinWait1);
  2213. recv!(s, [TcpRepr {
  2214. control: TcpControl::Fin,
  2215. seq_number: LOCAL_SEQ + 1,
  2216. ack_number: Some(REMOTE_SEQ + 1),
  2217. payload: &b"abcdef"[..],
  2218. ..RECV_TEMPL
  2219. }]);
  2220. send!(s, TcpRepr {
  2221. control: TcpControl::Fin,
  2222. seq_number: REMOTE_SEQ + 1,
  2223. ack_number: Some(LOCAL_SEQ + 1 + 6 + 1),
  2224. ..SEND_TEMPL
  2225. });
  2226. }
  2227. #[test]
  2228. fn test_mutual_close_with_data_2() {
  2229. let mut s = socket_established();
  2230. s.send_slice(b"abcdef").unwrap();
  2231. s.close();
  2232. assert_eq!(s.state, State::FinWait1);
  2233. recv!(s, [TcpRepr {
  2234. control: TcpControl::Fin,
  2235. seq_number: LOCAL_SEQ + 1,
  2236. ack_number: Some(REMOTE_SEQ + 1),
  2237. payload: &b"abcdef"[..],
  2238. ..RECV_TEMPL
  2239. }]);
  2240. send!(s, TcpRepr {
  2241. seq_number: REMOTE_SEQ + 1,
  2242. ack_number: Some(LOCAL_SEQ + 1 + 6 + 1),
  2243. ..SEND_TEMPL
  2244. });
  2245. assert_eq!(s.state, State::FinWait2);
  2246. send!(s, TcpRepr {
  2247. control: TcpControl::Fin,
  2248. seq_number: REMOTE_SEQ + 1,
  2249. ack_number: Some(LOCAL_SEQ + 1 + 6 + 1),
  2250. ..SEND_TEMPL
  2251. });
  2252. recv!(s, [TcpRepr {
  2253. seq_number: LOCAL_SEQ + 1 + 6 + 1,
  2254. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2255. ..RECV_TEMPL
  2256. }]);
  2257. assert_eq!(s.state, State::TimeWait);
  2258. }
  2259. // =========================================================================================//
  2260. // Tests for retransmission on packet loss.
  2261. // =========================================================================================//
  2262. fn socket_recved() -> TcpSocket<'static> {
  2263. let mut s = socket_established();
  2264. send!(s, TcpRepr {
  2265. seq_number: REMOTE_SEQ + 1,
  2266. ack_number: Some(LOCAL_SEQ + 1),
  2267. payload: &b"abcdef"[..],
  2268. ..SEND_TEMPL
  2269. });
  2270. recv!(s, [TcpRepr {
  2271. seq_number: LOCAL_SEQ + 1,
  2272. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2273. window_len: 58,
  2274. ..RECV_TEMPL
  2275. }]);
  2276. s
  2277. }
  2278. #[test]
  2279. fn test_duplicate_seq_ack() {
  2280. let mut s = socket_recved();
  2281. // remote retransmission
  2282. send!(s, TcpRepr {
  2283. seq_number: REMOTE_SEQ + 1,
  2284. ack_number: Some(LOCAL_SEQ + 1),
  2285. payload: &b"abcdef"[..],
  2286. ..SEND_TEMPL
  2287. }, Ok(Some(TcpRepr {
  2288. seq_number: LOCAL_SEQ + 1,
  2289. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2290. window_len: 58,
  2291. ..RECV_TEMPL
  2292. })));
  2293. }
  2294. #[test]
  2295. fn test_missing_segment() {
  2296. let mut s = socket_established();
  2297. send!(s, TcpRepr {
  2298. seq_number: REMOTE_SEQ + 1,
  2299. ack_number: Some(LOCAL_SEQ + 1),
  2300. payload: &b"abcdef"[..],
  2301. ..SEND_TEMPL
  2302. });
  2303. recv!(s, [TcpRepr {
  2304. seq_number: LOCAL_SEQ + 1,
  2305. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2306. window_len: 58,
  2307. ..RECV_TEMPL
  2308. }]);
  2309. send!(s, TcpRepr {
  2310. seq_number: REMOTE_SEQ + 1 + 6 + 6,
  2311. ack_number: Some(LOCAL_SEQ + 1),
  2312. payload: &b"mnopqr"[..],
  2313. ..SEND_TEMPL
  2314. }, Ok(Some(TcpRepr {
  2315. seq_number: LOCAL_SEQ + 1,
  2316. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2317. window_len: 58,
  2318. ..RECV_TEMPL
  2319. })));
  2320. }
  2321. #[test]
  2322. fn test_data_retransmit() {
  2323. let mut s = socket_established();
  2324. s.send_slice(b"abcdef").unwrap();
  2325. recv!(s, time 1000, Ok(TcpRepr {
  2326. seq_number: LOCAL_SEQ + 1,
  2327. ack_number: Some(REMOTE_SEQ + 1),
  2328. payload: &b"abcdef"[..],
  2329. ..RECV_TEMPL
  2330. }));
  2331. recv!(s, time 1050, Err(Error::Exhausted));
  2332. recv!(s, time 1100, Ok(TcpRepr {
  2333. seq_number: LOCAL_SEQ + 1,
  2334. ack_number: Some(REMOTE_SEQ + 1),
  2335. payload: &b"abcdef"[..],
  2336. ..RECV_TEMPL
  2337. }));
  2338. }
  2339. #[test]
  2340. fn test_data_retransmit_bursts() {
  2341. let mut s = socket_established();
  2342. s.remote_win_len = 6;
  2343. s.send_slice(b"abcdef012345").unwrap();
  2344. recv!(s, time 0, Ok(TcpRepr {
  2345. control: TcpControl::None,
  2346. seq_number: LOCAL_SEQ + 1,
  2347. ack_number: Some(REMOTE_SEQ + 1),
  2348. payload: &b"abcdef"[..],
  2349. ..RECV_TEMPL
  2350. }), exact);
  2351. s.remote_win_len = 6;
  2352. recv!(s, time 0, Ok(TcpRepr {
  2353. control: TcpControl::Psh,
  2354. seq_number: LOCAL_SEQ + 1 + 6,
  2355. ack_number: Some(REMOTE_SEQ + 1),
  2356. payload: &b"012345"[..],
  2357. ..RECV_TEMPL
  2358. }), exact);
  2359. s.remote_win_len = 6;
  2360. recv!(s, time 0, Err(Error::Exhausted));
  2361. recv!(s, time 50, Err(Error::Exhausted));
  2362. recv!(s, time 100, Ok(TcpRepr {
  2363. control: TcpControl::None,
  2364. seq_number: LOCAL_SEQ + 1,
  2365. ack_number: Some(REMOTE_SEQ + 1),
  2366. payload: &b"abcdef"[..],
  2367. ..RECV_TEMPL
  2368. }), exact);
  2369. s.remote_win_len = 6;
  2370. recv!(s, time 150, Ok(TcpRepr {
  2371. control: TcpControl::Psh,
  2372. seq_number: LOCAL_SEQ + 1 + 6,
  2373. ack_number: Some(REMOTE_SEQ + 1),
  2374. payload: &b"012345"[..],
  2375. ..RECV_TEMPL
  2376. }), exact);
  2377. s.remote_win_len = 6;
  2378. recv!(s, time 200, Err(Error::Exhausted));
  2379. }
  2380. #[test]
  2381. fn test_send_data_after_syn_ack_retransmit() {
  2382. let mut s = socket_syn_received();
  2383. recv!(s, time 50, Ok(TcpRepr {
  2384. control: TcpControl::Syn,
  2385. seq_number: LOCAL_SEQ,
  2386. ack_number: Some(REMOTE_SEQ + 1),
  2387. max_seg_size: Some(1480),
  2388. ..RECV_TEMPL
  2389. }));
  2390. recv!(s, time 150, Ok(TcpRepr { // retransmit
  2391. control: TcpControl::Syn,
  2392. seq_number: LOCAL_SEQ,
  2393. ack_number: Some(REMOTE_SEQ + 1),
  2394. max_seg_size: Some(1480),
  2395. ..RECV_TEMPL
  2396. }));
  2397. send!(s, TcpRepr {
  2398. seq_number: REMOTE_SEQ + 1,
  2399. ack_number: Some(LOCAL_SEQ + 1),
  2400. ..SEND_TEMPL
  2401. });
  2402. assert_eq!(s.state(), State::Established);
  2403. s.send_slice(b"abcdef").unwrap();
  2404. recv!(s, [TcpRepr {
  2405. seq_number: LOCAL_SEQ + 1,
  2406. ack_number: Some(REMOTE_SEQ + 1),
  2407. payload: &b"abcdef"[..],
  2408. ..RECV_TEMPL
  2409. }])
  2410. }
  2411. #[test]
  2412. fn test_established_retransmit_reset_after_ack() {
  2413. let mut s = socket_established();
  2414. s.remote_win_len = 6;
  2415. s.send_slice(b"abcdef").unwrap();
  2416. s.send_slice(b"123456").unwrap();
  2417. s.send_slice(b"ABCDEF").unwrap();
  2418. recv!(s, time 1000, Ok(TcpRepr {
  2419. seq_number: LOCAL_SEQ + 1,
  2420. ack_number: Some(REMOTE_SEQ + 1),
  2421. payload: &b"abcdef"[..],
  2422. ..RECV_TEMPL
  2423. }));
  2424. send!(s, time 1005, TcpRepr {
  2425. seq_number: REMOTE_SEQ + 1,
  2426. ack_number: Some(LOCAL_SEQ + 1 + 6),
  2427. window_len: 6,
  2428. ..SEND_TEMPL
  2429. });
  2430. recv!(s, time 1010, Ok(TcpRepr {
  2431. seq_number: LOCAL_SEQ + 1 + 6,
  2432. ack_number: Some(REMOTE_SEQ + 1),
  2433. payload: &b"123456"[..],
  2434. ..RECV_TEMPL
  2435. }));
  2436. send!(s, time 1015, TcpRepr {
  2437. seq_number: REMOTE_SEQ + 1,
  2438. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  2439. window_len: 6,
  2440. ..SEND_TEMPL
  2441. });
  2442. recv!(s, time 1020, Ok(TcpRepr {
  2443. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  2444. ack_number: Some(REMOTE_SEQ + 1),
  2445. payload: &b"ABCDEF"[..],
  2446. ..RECV_TEMPL
  2447. }));
  2448. }
  2449. #[test]
  2450. fn test_close_wait_retransmit_reset_after_ack() {
  2451. let mut s = socket_close_wait();
  2452. s.remote_win_len = 6;
  2453. s.send_slice(b"abcdef").unwrap();
  2454. s.send_slice(b"123456").unwrap();
  2455. s.send_slice(b"ABCDEF").unwrap();
  2456. recv!(s, time 1000, Ok(TcpRepr {
  2457. seq_number: LOCAL_SEQ + 1,
  2458. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2459. payload: &b"abcdef"[..],
  2460. ..RECV_TEMPL
  2461. }));
  2462. send!(s, time 1005, TcpRepr {
  2463. seq_number: REMOTE_SEQ + 1 + 1,
  2464. ack_number: Some(LOCAL_SEQ + 1 + 6),
  2465. window_len: 6,
  2466. ..SEND_TEMPL
  2467. });
  2468. recv!(s, time 1010, Ok(TcpRepr {
  2469. seq_number: LOCAL_SEQ + 1 + 6,
  2470. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2471. payload: &b"123456"[..],
  2472. ..RECV_TEMPL
  2473. }));
  2474. send!(s, time 1015, TcpRepr {
  2475. seq_number: REMOTE_SEQ + 1 + 1,
  2476. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  2477. window_len: 6,
  2478. ..SEND_TEMPL
  2479. });
  2480. recv!(s, time 1020, Ok(TcpRepr {
  2481. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  2482. ack_number: Some(REMOTE_SEQ + 1 + 1),
  2483. payload: &b"ABCDEF"[..],
  2484. ..RECV_TEMPL
  2485. }));
  2486. }
  2487. #[test]
  2488. fn test_fin_wait_1_retransmit_reset_after_ack() {
  2489. let mut s = socket_established();
  2490. s.remote_win_len = 6;
  2491. s.send_slice(b"abcdef").unwrap();
  2492. s.send_slice(b"123456").unwrap();
  2493. s.send_slice(b"ABCDEF").unwrap();
  2494. s.close();
  2495. recv!(s, time 1000, Ok(TcpRepr {
  2496. seq_number: LOCAL_SEQ + 1,
  2497. ack_number: Some(REMOTE_SEQ + 1),
  2498. payload: &b"abcdef"[..],
  2499. ..RECV_TEMPL
  2500. }));
  2501. send!(s, time 1005, TcpRepr {
  2502. seq_number: REMOTE_SEQ + 1,
  2503. ack_number: Some(LOCAL_SEQ + 1 + 6),
  2504. window_len: 6,
  2505. ..SEND_TEMPL
  2506. });
  2507. recv!(s, time 1010, Ok(TcpRepr {
  2508. seq_number: LOCAL_SEQ + 1 + 6,
  2509. ack_number: Some(REMOTE_SEQ + 1),
  2510. payload: &b"123456"[..],
  2511. ..RECV_TEMPL
  2512. }));
  2513. send!(s, time 1015, TcpRepr {
  2514. seq_number: REMOTE_SEQ + 1,
  2515. ack_number: Some(LOCAL_SEQ + 1 + 6 + 6),
  2516. window_len: 6,
  2517. ..SEND_TEMPL
  2518. });
  2519. recv!(s, time 1020, Ok(TcpRepr {
  2520. control: TcpControl::Fin,
  2521. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  2522. ack_number: Some(REMOTE_SEQ + 1),
  2523. payload: &b"ABCDEF"[..],
  2524. ..RECV_TEMPL
  2525. }));
  2526. }
  2527. // =========================================================================================//
  2528. // Tests for window management.
  2529. // =========================================================================================//
  2530. #[test]
  2531. fn test_maximum_segment_size() {
  2532. let mut s = socket_listen();
  2533. s.tx_buffer = SocketBuffer::new(vec![0; 32767]);
  2534. send!(s, TcpRepr {
  2535. control: TcpControl::Syn,
  2536. seq_number: REMOTE_SEQ,
  2537. ack_number: None,
  2538. max_seg_size: Some(1000),
  2539. ..SEND_TEMPL
  2540. });
  2541. recv!(s, [TcpRepr {
  2542. control: TcpControl::Syn,
  2543. seq_number: LOCAL_SEQ,
  2544. ack_number: Some(REMOTE_SEQ + 1),
  2545. max_seg_size: Some(1480),
  2546. ..RECV_TEMPL
  2547. }]);
  2548. send!(s, TcpRepr {
  2549. seq_number: REMOTE_SEQ + 1,
  2550. ack_number: Some(LOCAL_SEQ + 1),
  2551. window_len: 32767,
  2552. ..SEND_TEMPL
  2553. });
  2554. s.send_slice(&[0; 1200][..]).unwrap();
  2555. recv!(s, Ok(TcpRepr {
  2556. seq_number: LOCAL_SEQ + 1,
  2557. ack_number: Some(REMOTE_SEQ + 1),
  2558. payload: &[0; 1000][..],
  2559. ..RECV_TEMPL
  2560. }));
  2561. }
  2562. // =========================================================================================//
  2563. // Tests for flow control.
  2564. // =========================================================================================//
  2565. #[test]
  2566. fn test_psh_transmit() {
  2567. let mut s = socket_established();
  2568. s.remote_win_len = 6;
  2569. s.send_slice(b"abcdef").unwrap();
  2570. s.send_slice(b"123456").unwrap();
  2571. recv!(s, time 0, Ok(TcpRepr {
  2572. control: TcpControl::None,
  2573. seq_number: LOCAL_SEQ + 1,
  2574. ack_number: Some(REMOTE_SEQ + 1),
  2575. payload: &b"abcdef"[..],
  2576. ..RECV_TEMPL
  2577. }), exact);
  2578. recv!(s, time 0, Ok(TcpRepr {
  2579. control: TcpControl::Psh,
  2580. seq_number: LOCAL_SEQ + 1 + 6,
  2581. ack_number: Some(REMOTE_SEQ + 1),
  2582. payload: &b"123456"[..],
  2583. ..RECV_TEMPL
  2584. }), exact);
  2585. }
  2586. #[test]
  2587. fn test_psh_receive() {
  2588. let mut s = socket_established();
  2589. send!(s, TcpRepr {
  2590. control: TcpControl::Psh,
  2591. seq_number: REMOTE_SEQ + 1,
  2592. ack_number: Some(LOCAL_SEQ + 1),
  2593. payload: &b"abcdef"[..],
  2594. ..SEND_TEMPL
  2595. });
  2596. recv!(s, [TcpRepr {
  2597. seq_number: LOCAL_SEQ + 1,
  2598. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2599. window_len: 58,
  2600. ..RECV_TEMPL
  2601. }]);
  2602. }
  2603. #[test]
  2604. fn test_zero_window_ack() {
  2605. let mut s = socket_established();
  2606. s.rx_buffer = SocketBuffer::new(vec![0; 6]);
  2607. send!(s, TcpRepr {
  2608. seq_number: REMOTE_SEQ + 1,
  2609. ack_number: Some(LOCAL_SEQ + 1),
  2610. payload: &b"abcdef"[..],
  2611. ..SEND_TEMPL
  2612. });
  2613. recv!(s, [TcpRepr {
  2614. seq_number: LOCAL_SEQ + 1,
  2615. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2616. window_len: 0,
  2617. ..RECV_TEMPL
  2618. }]);
  2619. send!(s, TcpRepr {
  2620. seq_number: REMOTE_SEQ + 1 + 6,
  2621. ack_number: Some(LOCAL_SEQ + 1),
  2622. payload: &b"123456"[..],
  2623. ..SEND_TEMPL
  2624. }, Ok(Some(TcpRepr {
  2625. seq_number: LOCAL_SEQ + 1,
  2626. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2627. window_len: 0,
  2628. ..RECV_TEMPL
  2629. })));
  2630. }
  2631. #[test]
  2632. fn test_zero_window_ack_on_window_growth() {
  2633. let mut s = socket_established();
  2634. s.rx_buffer = SocketBuffer::new(vec![0; 6]);
  2635. send!(s, TcpRepr {
  2636. seq_number: REMOTE_SEQ + 1,
  2637. ack_number: Some(LOCAL_SEQ + 1),
  2638. payload: &b"abcdef"[..],
  2639. ..SEND_TEMPL
  2640. });
  2641. recv!(s, [TcpRepr {
  2642. seq_number: LOCAL_SEQ + 1,
  2643. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2644. window_len: 0,
  2645. ..RECV_TEMPL
  2646. }]);
  2647. recv!(s, time 0, Err(Error::Exhausted));
  2648. assert_eq!(s.recv(3), Ok(&b"abc"[..]));
  2649. recv!(s, time 0, Ok(TcpRepr {
  2650. seq_number: LOCAL_SEQ + 1,
  2651. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2652. window_len: 3,
  2653. ..RECV_TEMPL
  2654. }));
  2655. recv!(s, time 0, Err(Error::Exhausted));
  2656. assert_eq!(s.recv(3), Ok(&b"def"[..]));
  2657. recv!(s, time 0, Ok(TcpRepr {
  2658. seq_number: LOCAL_SEQ + 1,
  2659. ack_number: Some(REMOTE_SEQ + 1 + 6),
  2660. window_len: 6,
  2661. ..RECV_TEMPL
  2662. }));
  2663. }
  2664. #[test]
  2665. fn test_fill_peer_window() {
  2666. let mut s = socket_established();
  2667. s.remote_mss = 6;
  2668. s.send_slice(b"abcdef123456!@#$%^").unwrap();
  2669. recv!(s, [TcpRepr {
  2670. seq_number: LOCAL_SEQ + 1,
  2671. ack_number: Some(REMOTE_SEQ + 1),
  2672. payload: &b"abcdef"[..],
  2673. ..RECV_TEMPL
  2674. }, TcpRepr {
  2675. seq_number: LOCAL_SEQ + 1 + 6,
  2676. ack_number: Some(REMOTE_SEQ + 1),
  2677. payload: &b"123456"[..],
  2678. ..RECV_TEMPL
  2679. }, TcpRepr {
  2680. seq_number: LOCAL_SEQ + 1 + 6 + 6,
  2681. ack_number: Some(REMOTE_SEQ + 1),
  2682. payload: &b"!@#$%^"[..],
  2683. ..RECV_TEMPL
  2684. }]);
  2685. }
  2686. }