tcp.rs 103 KB

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