]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Network/Tcp4Dxe/Tcp4Input.c
MdeModulePkg: Clean up source files
[mirror_edk2.git] / MdeModulePkg / Universal / Network / Tcp4Dxe / Tcp4Input.c
1 /** @file
2 TCP input process routines.
3
4 Copyright (c) 2005 - 2018, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php<BR>
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15
16 #include "Tcp4Main.h"
17
18
19 /**
20 Check whether the sequence number of the incoming segment is acceptable.
21
22 @param Tcb Pointer to the TCP_CB of this TCP instance.
23 @param Seg Pointer to the incoming segment.
24
25 @retval 1 The sequence number is acceptable.
26 @retval 0 The sequence number is not acceptable.
27
28 **/
29 INTN
30 TcpSeqAcceptable (
31 IN TCP_CB *Tcb,
32 IN TCP_SEG *Seg
33 )
34 {
35 return (TCP_SEQ_LEQ (Tcb->RcvNxt, Seg->End) &&
36 TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2 + Tcb->RcvWnd));
37 }
38
39
40 /**
41 NewReno fast recovery, RFC3782.
42
43 @param Tcb Pointer to the TCP_CB of this TCP instance.
44 @param Seg Segment that triggers the fast recovery.
45
46 **/
47 VOID
48 TcpFastRecover (
49 IN OUT TCP_CB *Tcb,
50 IN TCP_SEG *Seg
51 )
52 {
53 UINT32 FlightSize;
54 UINT32 Acked;
55
56 //
57 // Step 1: Three duplicate ACKs and not in fast recovery
58 //
59 if (Tcb->CongestState != TCP_CONGEST_RECOVER) {
60
61 //
62 // Step 1A: Invoking fast retransmission.
63 //
64 FlightSize = TCP_SUB_SEQ (Tcb->SndNxt, Tcb->SndUna);
65
66 Tcb->Ssthresh = MAX (FlightSize >> 1, (UINT32) (2 * Tcb->SndMss));
67 Tcb->Recover = Tcb->SndNxt;
68
69 Tcb->CongestState = TCP_CONGEST_RECOVER;
70 TCP_CLEAR_FLG (Tcb->CtrlFlag, TCP_CTRL_RTT_ON);
71
72 //
73 // Step 2: Entering fast retransmission
74 //
75 TcpRetransmit (Tcb, Tcb->SndUna);
76 Tcb->CWnd = Tcb->Ssthresh + 3 * Tcb->SndMss;
77
78 DEBUG ((EFI_D_NET, "TcpFastRecover: enter fast retransmission"
79 " for TCB %p, recover point is %d\n", Tcb, Tcb->Recover));
80 return;
81 }
82
83 //
84 // During fast recovery, execute Step 3, 4, 5 of RFC3782
85 //
86 if (Seg->Ack == Tcb->SndUna) {
87
88 //
89 // Step 3: Fast Recovery,
90 // If this is a duplicated ACK, increse Cwnd by SMSS.
91 //
92
93 // Step 4 is skipped here only to be executed later
94 // by TcpToSendData
95 //
96 Tcb->CWnd += Tcb->SndMss;
97 DEBUG ((EFI_D_NET, "TcpFastRecover: received another"
98 " duplicated ACK (%d) for TCB %p\n", Seg->Ack, Tcb));
99
100 } else {
101
102 //
103 // New data is ACKed, check whether it is a
104 // full ACK or partial ACK
105 //
106 if (TCP_SEQ_GEQ (Seg->Ack, Tcb->Recover)) {
107
108 //
109 // Step 5 - Full ACK:
110 // deflate the congestion window, and exit fast recovery
111 //
112 FlightSize = TCP_SUB_SEQ (Tcb->SndNxt, Tcb->SndUna);
113
114 Tcb->CWnd = MIN (Tcb->Ssthresh, FlightSize + Tcb->SndMss);
115
116 Tcb->CongestState = TCP_CONGEST_OPEN;
117 DEBUG ((EFI_D_NET, "TcpFastRecover: received a full ACK(%d)"
118 " for TCB %p, exit fast recovery\n", Seg->Ack, Tcb));
119
120 } else {
121
122 //
123 // Step 5 - Partial ACK:
124 // fast retransmit the first unacknowledge field
125 // , then deflate the CWnd
126 //
127 TcpRetransmit (Tcb, Seg->Ack);
128 Acked = TCP_SUB_SEQ (Seg->Ack, Tcb->SndUna);
129
130 //
131 // Deflate the CWnd by the amount of new data
132 // ACKed by SEG.ACK. If more than one SMSS data
133 // is ACKed, add back SMSS byte to CWnd after
134 //
135 if (Acked >= Tcb->SndMss) {
136 Acked -= Tcb->SndMss;
137
138 }
139
140 Tcb->CWnd -= Acked;
141
142 DEBUG ((EFI_D_NET, "TcpFastRecover: received a partial"
143 " ACK(%d) for TCB %p\n", Seg->Ack, Tcb));
144
145 }
146 }
147 }
148
149
150 /**
151 NewReno fast loss recovery, RFC3792.
152
153 @param Tcb Pointer to the TCP_CB of this TCP instance.
154 @param Seg Segment that triggers the fast loss recovery.
155
156 **/
157 VOID
158 TcpFastLossRecover (
159 IN OUT TCP_CB *Tcb,
160 IN TCP_SEG *Seg
161 )
162 {
163 if (TCP_SEQ_GT (Seg->Ack, Tcb->SndUna)) {
164
165 //
166 // New data is ACKed, check whether it is a
167 // full ACK or partial ACK
168 //
169 if (TCP_SEQ_GEQ (Seg->Ack, Tcb->LossRecover)) {
170
171 //
172 // Full ACK: exit the loss recovery.
173 //
174 Tcb->LossTimes = 0;
175 Tcb->CongestState = TCP_CONGEST_OPEN;
176
177 DEBUG ((EFI_D_NET, "TcpFastLossRecover: received a "
178 "full ACK(%d) for TCB %p\n", Seg->Ack, Tcb));
179
180 } else {
181
182 //
183 // Partial ACK:
184 // fast retransmit the first unacknowledge field.
185 //
186 TcpRetransmit (Tcb, Seg->Ack);
187 DEBUG ((EFI_D_NET, "TcpFastLossRecover: received a "
188 "partial ACK(%d) for TCB %p\n", Seg->Ack, Tcb));
189 }
190 }
191 }
192
193
194 /**
195 Compute the RTT as specified in RFC2988.
196
197 @param Tcb Pointer to the TCP_CB of this TCP instance.
198 @param Measure Currently measured RTT in heart beats.
199
200 **/
201 VOID
202 TcpComputeRtt (
203 IN OUT TCP_CB *Tcb,
204 IN UINT32 Measure
205 )
206 {
207 INT32 Var;
208
209 //
210 // Step 2.3: Compute the RTO for subsequent RTT measurement.
211 //
212 if (Tcb->SRtt != 0) {
213
214 Var = Tcb->SRtt - (Measure << TCP_RTT_SHIFT);
215
216 if (Var < 0) {
217 Var = -Var;
218 }
219
220 Tcb->RttVar = (3 * Tcb->RttVar + Var) >> 2;
221 Tcb->SRtt = 7 * (Tcb->SRtt >> 3) + Measure;
222
223 } else {
224 //
225 // Step 2.2: compute the first RTT measure
226 //
227 Tcb->SRtt = Measure << TCP_RTT_SHIFT;
228 Tcb->RttVar = Measure << (TCP_RTT_SHIFT - 1);
229 }
230
231 Tcb->Rto = (Tcb->SRtt + MAX (8, 4 * Tcb->RttVar)) >> TCP_RTT_SHIFT;
232
233 //
234 // Step 2.4: Limit the RTO to at least 1 second
235 // Step 2.5: Limit the RTO to a maxium value that
236 // is at least 60 second
237 //
238 if (Tcb->Rto < TCP_RTO_MIN) {
239 Tcb->Rto = TCP_RTO_MIN;
240
241 } else if (Tcb->Rto > TCP_RTO_MAX) {
242 Tcb->Rto = TCP_RTO_MAX;
243
244 }
245
246 DEBUG ((EFI_D_NET, "TcpComputeRtt: new RTT for TCB %p"
247 " computed SRTT: %d RTTVAR: %d RTO: %d\n",
248 Tcb, Tcb->SRtt, Tcb->RttVar, Tcb->Rto));
249
250 }
251
252
253 /**
254 Trim the data, SYN and FIN to fit into the window defined by Left and Right.
255
256 @param Nbuf Buffer that contains received TCP segment without IP header.
257 @param Left The sequence number of the window's left edge.
258 @param Right The sequence number of the window's right edge.
259
260 **/
261 VOID
262 TcpTrimSegment (
263 IN NET_BUF *Nbuf,
264 IN TCP_SEQNO Left,
265 IN TCP_SEQNO Right
266 )
267 {
268 TCP_SEG *Seg;
269 TCP_SEQNO Urg;
270 UINT32 Drop;
271
272 Seg = TCPSEG_NETBUF (Nbuf);
273
274 //
275 // If the segment is completely out of window,
276 // truncate every thing, include SYN and FIN.
277 //
278 if (TCP_SEQ_LEQ (Seg->End, Left) || TCP_SEQ_LEQ (Right, Seg->Seq)) {
279
280 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_SYN);
281 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_FIN);
282
283 Seg->Seq = Seg->End;
284 NetbufTrim (Nbuf, Nbuf->TotalSize, NET_BUF_HEAD);
285 return;
286 }
287
288 //
289 // Adjust the buffer header
290 //
291 if (TCP_SEQ_LT (Seg->Seq, Left)) {
292
293 Drop = TCP_SUB_SEQ (Left, Seg->Seq);
294 Urg = Seg->Seq + Seg->Urg;
295 Seg->Seq = Left;
296
297 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN)) {
298 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_SYN);
299 Drop--;
300 }
301
302 //
303 // Adjust the urgent point
304 //
305 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_URG)) {
306
307 if (TCP_SEQ_LT (Urg, Seg->Seq)) {
308
309 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_URG);
310 } else {
311 Seg->Urg = (UINT16) TCP_SUB_SEQ (Urg, Seg->Seq);
312 }
313 }
314
315 if (Drop != 0) {
316 NetbufTrim (Nbuf, Drop, NET_BUF_HEAD);
317 }
318 }
319
320 //
321 // Adjust the buffer tail
322 //
323 if (TCP_SEQ_GT (Seg->End, Right)) {
324
325 Drop = TCP_SUB_SEQ (Seg->End, Right);
326 Seg->End = Right;
327
328 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_FIN)) {
329 TCP_CLEAR_FLG (Seg->Flag, TCP_FLG_FIN);
330 Drop--;
331 }
332
333 if (Drop != 0) {
334 NetbufTrim (Nbuf, Drop, NET_BUF_TAIL);
335 }
336 }
337
338 ASSERT (TcpVerifySegment (Nbuf) != 0);
339 }
340
341
342 /**
343 Trim off the data outside the tcb's receive window.
344
345 @param Tcb Pointer to the TCP_CB of this TCP instance.
346 @param Nbuf Pointer to the NET_BUF containing the received tcp segment.
347
348 **/
349 VOID
350 TcpTrimInWnd (
351 IN TCP_CB *Tcb,
352 IN NET_BUF *Nbuf
353 )
354 {
355 TcpTrimSegment (Nbuf, Tcb->RcvNxt, Tcb->RcvWl2 + Tcb->RcvWnd);
356 }
357
358
359 /**
360 Process the data and FIN flag, check whether to deliver
361 data to the socket layer.
362
363 @param Tcb Pointer to the TCP_CB of this TCP instance.
364
365 @retval 0 No error occurred to deliver data.
366 @retval -1 Error condition occurred. Proper response is to reset the
367 connection.
368
369 **/
370 INTN
371 TcpDeliverData (
372 IN OUT TCP_CB *Tcb
373 )
374 {
375 LIST_ENTRY *Entry;
376 NET_BUF *Nbuf;
377 TCP_SEQNO Seq;
378 TCP_SEG *Seg;
379 UINT32 Urgent;
380
381 ASSERT ((Tcb != NULL) && (Tcb->Sk != NULL));
382
383 //
384 // make sure there is some data queued,
385 // and TCP is in a proper state
386 //
387 if (IsListEmpty (&Tcb->RcvQue) || !TCP_CONNECTED (Tcb->State)) {
388
389 return 0;
390 }
391
392 //
393 // Deliver data to the socket layer
394 //
395 Entry = Tcb->RcvQue.ForwardLink;
396 Seq = Tcb->RcvNxt;
397
398 while (Entry != &Tcb->RcvQue) {
399 Nbuf = NET_LIST_USER_STRUCT (Entry, NET_BUF, List);
400 Seg = TCPSEG_NETBUF (Nbuf);
401
402 ASSERT (TcpVerifySegment (Nbuf) != 0);
403 ASSERT (Nbuf->Tcp == NULL);
404
405 if (TCP_SEQ_GT (Seg->Seq, Seq)) {
406 break;
407 }
408
409 Entry = Entry->ForwardLink;
410 Seq = Seg->End;
411 Tcb->RcvNxt = Seq;
412
413 RemoveEntryList (&Nbuf->List);
414
415 //
416 // RFC793 Eighth step: process FIN in sequence
417 //
418 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_FIN)) {
419
420 //
421 // The peer sends to us junky data after FIN,
422 // reset the connection.
423 //
424 if (!IsListEmpty (&Tcb->RcvQue)) {
425 DEBUG ((EFI_D_ERROR, "TcpDeliverData: data received after"
426 " FIN from peer of TCB %p, reset connection\n", Tcb));
427
428 NetbufFree (Nbuf);
429 return -1;
430 }
431
432 DEBUG ((EFI_D_NET, "TcpDeliverData: processing FIN "
433 "from peer of TCB %p\n", Tcb));
434
435 switch (Tcb->State) {
436 case TCP_SYN_RCVD:
437 case TCP_ESTABLISHED:
438
439 TcpSetState (Tcb, TCP_CLOSE_WAIT);
440 break;
441
442 case TCP_FIN_WAIT_1:
443
444 if (!TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_FIN_ACKED)) {
445
446 TcpSetState (Tcb, TCP_CLOSING);
447 break;
448 }
449
450 //
451 // fall through
452 //
453 case TCP_FIN_WAIT_2:
454
455 TcpSetState (Tcb, TCP_TIME_WAIT);
456 TcpClearAllTimer (Tcb);
457
458 if (Tcb->TimeWaitTimeout != 0) {
459
460 TcpSetTimer (Tcb, TCP_TIMER_2MSL, Tcb->TimeWaitTimeout);
461 } else {
462
463 DEBUG ((EFI_D_WARN, "Connection closed immediately "
464 "because app disables TIME_WAIT timer for %p\n", Tcb));
465
466 TcpSendAck (Tcb);
467 TcpClose (Tcb);
468 }
469 break;
470
471 case TCP_CLOSE_WAIT:
472 case TCP_CLOSING:
473 case TCP_LAST_ACK:
474 case TCP_TIME_WAIT:
475 //
476 // The peer sends to us junk FIN byte. Discard
477 // the buffer then reset the connection
478 //
479 NetbufFree (Nbuf);
480 return -1;
481 default:
482 break;
483 }
484
485 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
486
487 Seg->End--;
488 }
489
490 //
491 // Don't delay the ack if PUSH flag is on.
492 //
493 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_PSH)) {
494
495 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
496 }
497
498 if (Nbuf->TotalSize != 0) {
499 Urgent = 0;
500
501 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RCVD_URG) &&
502 TCP_SEQ_LEQ (Seg->Seq, Tcb->RcvUp)) {
503
504 if (TCP_SEQ_LEQ (Seg->End, Tcb->RcvUp)) {
505 Urgent = Nbuf->TotalSize;
506 } else {
507 Urgent = TCP_SUB_SEQ (Tcb->RcvUp, Seg->Seq) + 1;
508 }
509 }
510
511 SockDataRcvd (Tcb->Sk, Nbuf, Urgent);
512 }
513
514 if (TCP_FIN_RCVD (Tcb->State)) {
515
516 SockNoMoreData (Tcb->Sk);
517 }
518
519 NetbufFree (Nbuf);
520 }
521
522 return 0;
523 }
524
525
526 /**
527 Store the data into the reassemble queue.
528
529 @param Tcb Pointer to the TCP_CB of this TCP instance.
530 @param Nbuf Pointer to the buffer containing the data to be queued.
531
532 **/
533 VOID
534 TcpQueueData (
535 IN OUT TCP_CB *Tcb,
536 IN NET_BUF *Nbuf
537 )
538 {
539 TCP_SEG *Seg;
540 LIST_ENTRY *Head;
541 LIST_ENTRY *Prev;
542 LIST_ENTRY *Cur;
543 NET_BUF *Node;
544
545 ASSERT ((Tcb != NULL) && (Nbuf != NULL) && (Nbuf->Tcp == NULL));
546
547 NET_GET_REF (Nbuf);
548
549 Seg = TCPSEG_NETBUF (Nbuf);
550 Head = &Tcb->RcvQue;
551
552 //
553 // Fast path to process normal case. That is,
554 // no out-of-order segments are received.
555 //
556 if (IsListEmpty (Head)) {
557
558 InsertTailList (Head, &Nbuf->List);
559 return;
560 }
561
562 //
563 // Find the point to insert the buffer
564 //
565 for (Prev = Head, Cur = Head->ForwardLink;
566 Cur != Head;
567 Prev = Cur, Cur = Cur->ForwardLink) {
568
569 Node = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
570
571 if (TCP_SEQ_LT (Seg->Seq, TCPSEG_NETBUF (Node)->Seq)) {
572 break;
573 }
574 }
575
576 //
577 // Check whether the current segment overlaps with the
578 // previous segment.
579 //
580 if (Prev != Head) {
581 Node = NET_LIST_USER_STRUCT (Prev, NET_BUF, List);
582
583 if (TCP_SEQ_LT (Seg->Seq, TCPSEG_NETBUF (Node)->End)) {
584
585 if (TCP_SEQ_LEQ (Seg->End, TCPSEG_NETBUF (Node)->End)) {
586
587 NetbufFree (Nbuf);
588 return;
589 }
590
591 TcpTrimSegment (Nbuf, TCPSEG_NETBUF (Node)->End, Seg->End);
592 }
593 }
594
595 InsertHeadList (Prev, &Nbuf->List);
596
597 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
598
599 //
600 // Check the segments after the insert point.
601 //
602 while (Cur != Head) {
603 Node = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
604
605 if (TCP_SEQ_LEQ (TCPSEG_NETBUF (Node)->End, Seg->End)) {
606
607 Cur = Cur->ForwardLink;
608
609 RemoveEntryList (&Node->List);
610 NetbufFree (Node);
611 continue;
612 }
613
614 if (TCP_SEQ_LT (TCPSEG_NETBUF (Node)->Seq, Seg->End)) {
615
616 if (TCP_SEQ_LEQ (TCPSEG_NETBUF (Node)->Seq, Seg->Seq)) {
617
618 RemoveEntryList (&Nbuf->List);
619 NetbufFree (Nbuf);
620 return ;
621 }
622
623 TcpTrimSegment (Nbuf, Seg->Seq, TCPSEG_NETBUF (Node)->Seq);
624 break;
625 }
626
627 Cur = Cur->ForwardLink;
628 }
629 }
630
631
632 /**
633 Ajust the send queue or the retransmit queue.
634
635 @param Tcb Pointer to the TCP_CB of this TCP instance.
636 @param Ack The acknowledge seuqence number of the received segment.
637
638 **/
639 VOID
640 TcpAdjustSndQue (
641 IN TCP_CB *Tcb,
642 IN TCP_SEQNO Ack
643 )
644 {
645 LIST_ENTRY *Head;
646 LIST_ENTRY *Cur;
647 NET_BUF *Node;
648 TCP_SEG *Seg;
649
650 Head = &Tcb->SndQue;
651 Cur = Head->ForwardLink;
652
653 while (Cur != Head) {
654 Node = NET_LIST_USER_STRUCT (Cur, NET_BUF, List);
655 Seg = TCPSEG_NETBUF (Node);
656
657 if (TCP_SEQ_GEQ (Seg->Seq, Ack)) {
658 break;
659 }
660
661 //
662 // Remove completely ACKed segments
663 //
664 if (TCP_SEQ_LEQ (Seg->End, Ack)) {
665 Cur = Cur->ForwardLink;
666
667 RemoveEntryList (&Node->List);
668 NetbufFree (Node);
669 continue;
670 }
671
672 TcpTrimSegment (Node, Ack, Seg->End);
673 break;
674 }
675 }
676
677
678 /**
679 Process the received TCP segments.
680
681 @param Nbuf Buffer that contains received TCP segment without IP header.
682 @param Src Source address of the segment, or the peer's IP address.
683 @param Dst Destination address of the segment, or the local end's IP
684 address.
685
686 @retval 0 Segment is processed successfully. It is either accepted or
687 discarded. But no connection is reset by the segment.
688 @retval -1 A connection is reset by the segment.
689
690 **/
691 INTN
692 TcpInput (
693 IN NET_BUF *Nbuf,
694 IN UINT32 Src,
695 IN UINT32 Dst
696 )
697 {
698 TCP_CB *Tcb;
699 TCP_CB *Parent;
700 TCP_OPTION Option;
701 TCP_HEAD *Head;
702 INT32 Len;
703 TCP_SEG *Seg;
704 TCP_SEQNO Right;
705 TCP_SEQNO Urg;
706 INT32 Usable;
707
708 NET_CHECK_SIGNATURE (Nbuf, NET_BUF_SIGNATURE);
709
710 Parent = NULL;
711 Tcb = NULL;
712
713 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL);
714 ASSERT (Head != NULL);
715
716 if (Nbuf->TotalSize < sizeof (TCP_HEAD)) {
717 DEBUG ((EFI_D_NET, "TcpInput: received a malformed packet\n"));
718 goto DISCARD;
719 }
720
721 Len = Nbuf->TotalSize - (Head->HeadLen << 2);
722
723 if ((Head->HeadLen < 5) || (Len < 0) ||
724 (TcpChecksum (Nbuf, NetPseudoHeadChecksum (Src, Dst, 6, 0)) != 0)) {
725
726 DEBUG ((EFI_D_NET, "TcpInput: received a malformed packet\n"));
727 goto DISCARD;
728 }
729
730 if (TCP_FLG_ON (Head->Flag, TCP_FLG_SYN)) {
731 Len++;
732 }
733
734 if (TCP_FLG_ON (Head->Flag, TCP_FLG_FIN)) {
735 Len++;
736 }
737
738 Tcb = TcpLocateTcb (
739 Head->DstPort,
740 Dst,
741 Head->SrcPort,
742 Src,
743 (BOOLEAN) TCP_FLG_ON (Head->Flag, TCP_FLG_SYN)
744 );
745
746 if ((Tcb == NULL) || (Tcb->State == TCP_CLOSED)) {
747 DEBUG ((EFI_D_NET, "TcpInput: send reset because no TCB found\n"));
748
749 Tcb = NULL;
750 goto SEND_RESET;
751 }
752
753 Seg = TcpFormatNetbuf (Tcb, Nbuf);
754
755 //
756 // RFC1122 recommended reaction to illegal option
757 // (in fact, an illegal option length) is reset.
758 //
759 if (TcpParseOption (Nbuf->Tcp, &Option) == -1) {
760 DEBUG ((EFI_D_ERROR, "TcpInput: reset the peer because"
761 " of malformed option for TCB %p\n", Tcb));
762
763 goto SEND_RESET;
764 }
765
766 //
767 // From now on, the segment is headless
768 //
769 NetbufTrim (Nbuf, (Head->HeadLen << 2), NET_BUF_HEAD);
770 Nbuf->Tcp = NULL;
771
772 //
773 // Process the segment in LISTEN state.
774 //
775 if (Tcb->State == TCP_LISTEN) {
776 //
777 // First step: Check RST
778 //
779 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) {
780 DEBUG ((EFI_D_WARN, "TcpInput: discard a reset segment "
781 "for TCB %p in listening\n", Tcb));
782
783 goto DISCARD;
784 }
785
786 //
787 // Second step: Check ACK.
788 // Any ACK sent to TCP in LISTEN is reseted.
789 //
790 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) {
791 DEBUG ((EFI_D_WARN, "TcpInput: send reset because of"
792 " segment with ACK for TCB %p in listening\n", Tcb));
793
794 goto SEND_RESET;
795 }
796
797 //
798 // Third step: Check SYN
799 //
800 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN)) {
801 //
802 // create a child TCB to handle the data
803 //
804 Parent = Tcb;
805
806 Tcb = TcpCloneTcb (Parent);
807 if (Tcb == NULL) {
808 DEBUG ((EFI_D_ERROR, "TcpInput: discard a segment because"
809 " failed to clone a child for TCB %p\n", Tcb));
810
811 goto DISCARD;
812 }
813
814 DEBUG ((EFI_D_NET, "TcpInput: create a child for TCB %p"
815 " in listening\n", Tcb));
816
817 //
818 // init the TCB structure
819 //
820 Tcb->LocalEnd.Ip = Dst;
821 Tcb->LocalEnd.Port = Head->DstPort;
822 Tcb->RemoteEnd.Ip = Src;
823 Tcb->RemoteEnd.Port = Head->SrcPort;
824
825 TcpInitTcbLocal (Tcb);
826 TcpInitTcbPeer (Tcb, Seg, &Option);
827
828 TcpSetState (Tcb, TCP_SYN_RCVD);
829 TcpSetTimer (Tcb, TCP_TIMER_CONNECT, Tcb->ConnectTimeout);
830 TcpTrimInWnd (Tcb, Nbuf);
831
832 goto StepSix;
833 }
834
835 goto DISCARD;
836
837 } else if (Tcb->State == TCP_SYN_SENT) {
838 //
839 // First step: Check ACK bit
840 //
841 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK) && (Seg->Ack != Tcb->Iss + 1)) {
842
843 DEBUG ((EFI_D_WARN, "TcpInput: send reset because of "
844 "wrong ACK received for TCB %p in SYN_SENT\n", Tcb));
845
846 goto SEND_RESET;
847 }
848
849 //
850 // Second step: Check RST bit
851 //
852 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) {
853
854 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) {
855
856 DEBUG ((EFI_D_WARN, "TcpInput: connection reset by"
857 " peer for TCB %p in SYN_SENT\n", Tcb));
858
859 SOCK_ERROR (Tcb->Sk, EFI_CONNECTION_RESET);
860 goto DROP_CONNECTION;
861 } else {
862
863 DEBUG ((EFI_D_WARN, "TcpInput: discard a reset segment "
864 "because of no ACK for TCB %p in SYN_SENT\n", Tcb));
865
866 goto DISCARD;
867 }
868 }
869
870 //
871 // Third step: Check security and precedence. Skipped
872 //
873
874 //
875 // Fourth step: Check SYN. Pay attention to simultaneous open
876 //
877 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN)) {
878
879 TcpInitTcbPeer (Tcb, Seg, &Option);
880
881 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) {
882
883 Tcb->SndUna = Seg->Ack;
884 }
885
886 TcpClearTimer (Tcb, TCP_TIMER_REXMIT);
887
888 if (TCP_SEQ_GT (Tcb->SndUna, Tcb->Iss)) {
889
890 TcpSetState (Tcb, TCP_ESTABLISHED);
891
892 TcpClearTimer (Tcb, TCP_TIMER_CONNECT);
893 TcpDeliverData (Tcb);
894
895 if ((Tcb->CongestState == TCP_CONGEST_OPEN) &&
896 TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RTT_ON)) {
897
898 TcpComputeRtt (Tcb, Tcb->RttMeasure);
899 TCP_CLEAR_FLG (Tcb->CtrlFlag, TCP_CTRL_RTT_ON);
900 }
901
902 TcpTrimInWnd (Tcb, Nbuf);
903
904 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
905
906 DEBUG ((EFI_D_NET, "TcpInput: connection established"
907 " for TCB %p in SYN_SENT\n", Tcb));
908
909 goto StepSix;
910 } else {
911 //
912 // Received a SYN segment without ACK, simultaneous open.
913 //
914 TcpSetState (Tcb, TCP_SYN_RCVD);
915
916 ASSERT (Tcb->SndNxt == Tcb->Iss + 1);
917 TcpAdjustSndQue (Tcb, Tcb->SndNxt);
918
919 TcpTrimInWnd (Tcb, Nbuf);
920
921 DEBUG ((EFI_D_WARN, "TcpInput: simultaneous open "
922 "for TCB %p in SYN_SENT\n", Tcb));
923
924 goto StepSix;
925 }
926 }
927
928 goto DISCARD;
929 }
930
931 //
932 // Process segment in SYN_RCVD or TCP_CONNECTED states
933 //
934
935 //
936 // Clear probe timer since the RecvWindow is opened.
937 //
938 if (Tcb->ProbeTimerOn && (Seg->Wnd != 0)) {
939 TcpClearTimer (Tcb, TCP_TIMER_PROBE);
940 Tcb->ProbeTimerOn = FALSE;
941 }
942
943 //
944 // First step: Check whether SEG.SEQ is acceptable
945 //
946 if (TcpSeqAcceptable (Tcb, Seg) == 0) {
947 DEBUG ((EFI_D_WARN, "TcpInput: sequence acceptance"
948 " test failed for segment of TCB %p\n", Tcb));
949
950 if (!TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) {
951 TcpSendAck (Tcb);
952 }
953
954 goto DISCARD;
955 }
956
957 if ((TCP_SEQ_LT (Seg->Seq, Tcb->RcvWl2)) &&
958 (Tcb->RcvWl2 == Seg->End) &&
959 !TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN | TCP_FLG_FIN)) {
960
961 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
962 }
963
964 //
965 // Second step: Check the RST
966 //
967 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_RST)) {
968
969 DEBUG ((EFI_D_WARN, "TcpInput: connection reset for TCB %p\n", Tcb));
970
971 if (Tcb->State == TCP_SYN_RCVD) {
972
973 SOCK_ERROR (Tcb->Sk, EFI_CONNECTION_REFUSED);
974
975 //
976 // This TCB comes from either a LISTEN TCB,
977 // or active open TCB with simultanous open.
978 // Do NOT signal user CONNECTION refused
979 // if it comes from a LISTEN TCB.
980 //
981 } else if ((Tcb->State == TCP_ESTABLISHED) ||
982 (Tcb->State == TCP_FIN_WAIT_1) ||
983 (Tcb->State == TCP_FIN_WAIT_2) ||
984 (Tcb->State == TCP_CLOSE_WAIT)) {
985
986 SOCK_ERROR (Tcb->Sk, EFI_CONNECTION_RESET);
987
988 } else {
989
990 }
991
992 goto DROP_CONNECTION;
993 }
994
995 //
996 // Trim the data and flags.
997 //
998 TcpTrimInWnd (Tcb, Nbuf);
999
1000 //
1001 // Third step: Check security and precedence, Ignored
1002 //
1003
1004 //
1005 // Fourth step: Check the SYN bit.
1006 //
1007 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_SYN)) {
1008
1009 DEBUG ((EFI_D_WARN, "TcpInput: connection reset "
1010 "because received extra SYN for TCB %p\n", Tcb));
1011
1012 SOCK_ERROR (Tcb->Sk, EFI_CONNECTION_RESET);
1013 goto RESET_THEN_DROP;
1014 }
1015
1016 //
1017 // Fifth step: Check the ACK
1018 //
1019 if (!TCP_FLG_ON (Seg->Flag, TCP_FLG_ACK)) {
1020 DEBUG ((EFI_D_WARN, "TcpInput: segment discard because"
1021 " of no ACK for connected TCB %p\n", Tcb));
1022
1023 goto DISCARD;
1024
1025 }
1026
1027 if (Tcb->State == TCP_SYN_RCVD) {
1028
1029 if (TCP_SEQ_LT (Tcb->SndUna, Seg->Ack) &&
1030 TCP_SEQ_LEQ (Seg->Ack, Tcb->SndNxt)) {
1031
1032 Tcb->SndWnd = Seg->Wnd;
1033 Tcb->SndWndMax = MAX (Tcb->SndWnd, Tcb->SndWndMax);
1034 Tcb->SndWl1 = Seg->Seq;
1035 Tcb->SndWl2 = Seg->Ack;
1036 TcpSetState (Tcb, TCP_ESTABLISHED);
1037
1038 TcpClearTimer (Tcb, TCP_TIMER_CONNECT);
1039 TcpDeliverData (Tcb);
1040
1041 DEBUG ((EFI_D_NET, "TcpInput: connection established "
1042 " for TCB %p in SYN_RCVD\n", Tcb));
1043
1044 //
1045 // Continue the process as ESTABLISHED state
1046 //
1047 } else {
1048 DEBUG ((EFI_D_WARN, "TcpInput: send reset because of"
1049 " wrong ACK for TCB %p in SYN_RCVD\n", Tcb));
1050
1051 goto SEND_RESET;
1052 }
1053 }
1054
1055 if (TCP_SEQ_LT (Seg->Ack, Tcb->SndUna)) {
1056
1057 DEBUG ((EFI_D_WARN, "TcpInput: ignore the out-of-data"
1058 " ACK for connected TCB %p\n", Tcb));
1059
1060 goto StepSix;
1061
1062 } else if (TCP_SEQ_GT (Seg->Ack, Tcb->SndNxt)) {
1063
1064 DEBUG ((EFI_D_WARN, "TcpInput: discard segment for "
1065 "future ACK for connected TCB %p\n", Tcb));
1066
1067 TcpSendAck (Tcb);
1068 goto DISCARD;
1069 }
1070
1071 //
1072 // From now on: SND.UNA <= SEG.ACK <= SND.NXT.
1073 //
1074 if (TCP_FLG_ON (Option.Flag, TCP_OPTION_RCVD_TS)) {
1075 //
1076 // update TsRecent as specified in page 16 RFC1323.
1077 // RcvWl2 equals to the variable "LastAckSent"
1078 // defined there.
1079 //
1080 if (TCP_SEQ_LEQ (Seg->Seq, Tcb->RcvWl2) &&
1081 TCP_SEQ_LT (Tcb->RcvWl2, Seg->End)) {
1082
1083 Tcb->TsRecent = Option.TSVal;
1084 Tcb->TsRecentAge = mTcpTick;
1085 }
1086
1087 TcpComputeRtt (Tcb, TCP_SUB_TIME (mTcpTick, Option.TSEcr));
1088
1089 } else if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RTT_ON)) {
1090
1091 ASSERT (Tcb->CongestState == TCP_CONGEST_OPEN);
1092
1093 TcpComputeRtt (Tcb, Tcb->RttMeasure);
1094 TCP_CLEAR_FLG (Tcb->CtrlFlag, TCP_CTRL_RTT_ON);
1095 }
1096
1097 if (Seg->Ack == Tcb->SndNxt) {
1098
1099 TcpClearTimer (Tcb, TCP_TIMER_REXMIT);
1100 } else {
1101
1102 TcpSetTimer (Tcb, TCP_TIMER_REXMIT, Tcb->Rto);
1103 }
1104
1105 //
1106 // Count duplicate acks.
1107 //
1108 if ((Seg->Ack == Tcb->SndUna) &&
1109 (Tcb->SndUna != Tcb->SndNxt) &&
1110 (Seg->Wnd == Tcb->SndWnd) &&
1111 (0 == Len)) {
1112
1113 Tcb->DupAck++;
1114 } else {
1115
1116 Tcb->DupAck = 0;
1117 }
1118
1119 //
1120 // Congestion avoidance, fast recovery and fast retransmission.
1121 //
1122 if (((Tcb->CongestState == TCP_CONGEST_OPEN) && (Tcb->DupAck < 3)) ||
1123 (Tcb->CongestState == TCP_CONGEST_LOSS)) {
1124
1125 if (TCP_SEQ_GT (Seg->Ack, Tcb->SndUna)) {
1126
1127 if (Tcb->CWnd < Tcb->Ssthresh) {
1128
1129 Tcb->CWnd += Tcb->SndMss;
1130 } else {
1131
1132 Tcb->CWnd += MAX (Tcb->SndMss * Tcb->SndMss / Tcb->CWnd, 1);
1133 }
1134
1135 Tcb->CWnd = MIN (Tcb->CWnd, TCP_MAX_WIN << Tcb->SndWndScale);
1136 }
1137
1138 if (Tcb->CongestState == TCP_CONGEST_LOSS) {
1139 TcpFastLossRecover (Tcb, Seg);
1140 }
1141 } else {
1142
1143 TcpFastRecover (Tcb, Seg);
1144 }
1145
1146 if (TCP_SEQ_GT (Seg->Ack, Tcb->SndUna)) {
1147
1148 TcpAdjustSndQue (Tcb, Seg->Ack);
1149 Tcb->SndUna = Seg->Ack;
1150
1151 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_SND_URG) &&
1152 TCP_SEQ_LT (Tcb->SndUp, Seg->Ack)) {
1153
1154 TCP_CLEAR_FLG (Tcb->CtrlFlag, TCP_CTRL_SND_URG);
1155 }
1156 }
1157
1158 //
1159 // Update window info
1160 //
1161 if (TCP_SEQ_LT (Tcb->SndWl1, Seg->Seq) ||
1162 ((Tcb->SndWl1 == Seg->Seq) && TCP_SEQ_LEQ (Tcb->SndWl2, Seg->Ack))) {
1163
1164 Right = Seg->Ack + Seg->Wnd;
1165
1166 if (TCP_SEQ_LT (Right, Tcb->SndWl2 + Tcb->SndWnd)) {
1167
1168 if ((Tcb->SndWl1 == Seg->Seq) &&
1169 (Tcb->SndWl2 == Seg->Ack) &&
1170 (Len == 0)) {
1171
1172 goto NO_UPDATE;
1173 }
1174
1175 DEBUG ((EFI_D_WARN, "TcpInput: peer shrinks the"
1176 " window for connected TCB %p\n", Tcb));
1177
1178 if ((Tcb->CongestState == TCP_CONGEST_RECOVER) &&
1179 (TCP_SEQ_LT (Right, Tcb->Recover))) {
1180
1181 Tcb->Recover = Right;
1182 }
1183
1184 if ((Tcb->CongestState == TCP_CONGEST_LOSS) &&
1185 (TCP_SEQ_LT (Right, Tcb->LossRecover))) {
1186
1187 Tcb->LossRecover = Right;
1188 }
1189
1190 if (TCP_SEQ_LT (Right, Tcb->SndNxt)) {
1191 //
1192 // Check for Window Retraction in RFC7923 section 2.4.
1193 // The lower n bits of the peer's actual receive window is wiped out if TCP
1194 // window scale is enabled, it will look like the peer is shrinking the window.
1195 // Check whether the SndNxt is out of the advertised receive window by more than
1196 // 2^Rcv.Wind.Shift before moving the SndNxt to the left.
1197 //
1198 DEBUG (
1199 (EFI_D_WARN,
1200 "TcpInput: peer advise negative useable window for connected TCB %p\n",
1201 Tcb)
1202 );
1203 Usable = TCP_SUB_SEQ (Tcb->SndNxt, Right);
1204 if ((Usable >> Tcb->SndWndScale) > 0) {
1205 DEBUG (
1206 (EFI_D_WARN,
1207 "TcpInput: SndNxt is out of window by more than window scale for TCB %p\n",
1208 Tcb)
1209 );
1210 Tcb->SndNxt = Right;
1211 }
1212 if (Right == Tcb->SndUna) {
1213
1214 TcpClearTimer (Tcb, TCP_TIMER_REXMIT);
1215 TcpSetProbeTimer (Tcb);
1216 }
1217 }
1218 }
1219
1220 Tcb->SndWnd = Seg->Wnd;
1221 Tcb->SndWndMax = MAX (Tcb->SndWnd, Tcb->SndWndMax);
1222 Tcb->SndWl1 = Seg->Seq;
1223 Tcb->SndWl2 = Seg->Ack;
1224 }
1225
1226 NO_UPDATE:
1227
1228 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_FIN_SENT) &&
1229 (Tcb->SndUna == Tcb->SndNxt)) {
1230
1231 DEBUG ((EFI_D_NET, "TcpInput: local FIN is ACKed by"
1232 " peer for connected TCB %p\n", Tcb));
1233
1234 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_FIN_ACKED);
1235 }
1236
1237 //
1238 // Transit the state if proper.
1239 //
1240 switch (Tcb->State) {
1241 case TCP_FIN_WAIT_1:
1242
1243 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_FIN_ACKED)) {
1244
1245 TcpSetState (Tcb, TCP_FIN_WAIT_2);
1246
1247 TcpClearAllTimer (Tcb);
1248 TcpSetTimer (Tcb, TCP_TIMER_FINWAIT2, Tcb->FinWait2Timeout);
1249 }
1250
1251 case TCP_FIN_WAIT_2:
1252
1253 break;
1254
1255 case TCP_CLOSE_WAIT:
1256 break;
1257
1258 case TCP_CLOSING:
1259
1260 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_FIN_ACKED)) {
1261
1262 TcpSetState (Tcb, TCP_TIME_WAIT);
1263
1264 TcpClearAllTimer (Tcb);
1265
1266 if (Tcb->TimeWaitTimeout != 0) {
1267
1268 TcpSetTimer (Tcb, TCP_TIMER_2MSL, Tcb->TimeWaitTimeout);
1269 } else {
1270
1271 DEBUG ((EFI_D_WARN, "Connection closed immediately "
1272 "because app disables TIME_WAIT timer for %p\n", Tcb));
1273
1274 TcpClose (Tcb);
1275 }
1276 }
1277 break;
1278
1279 case TCP_LAST_ACK:
1280
1281 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_FIN_ACKED)) {
1282
1283 TcpSetState (Tcb, TCP_CLOSED);
1284 }
1285
1286 break;
1287
1288 case TCP_TIME_WAIT:
1289
1290 TcpSendAck (Tcb);
1291
1292 if (Tcb->TimeWaitTimeout != 0) {
1293
1294 TcpSetTimer (Tcb, TCP_TIMER_2MSL, Tcb->TimeWaitTimeout);
1295 } else {
1296
1297 DEBUG ((EFI_D_WARN, "Connection closed immediately "
1298 "because app disables TIME_WAIT timer for %p\n", Tcb));
1299
1300 TcpClose (Tcb);
1301 }
1302 break;
1303
1304 default:
1305 break;
1306 }
1307
1308 //
1309 // Sixth step: Check the URG bit.update the Urg point
1310 // if in TCP_CAN_RECV, otherwise, leave the RcvUp intact.
1311 //
1312 StepSix:
1313
1314 Tcb->Idle = 0;
1315 TcpSetKeepaliveTimer (Tcb);
1316
1317 if (TCP_FLG_ON (Seg->Flag, TCP_FLG_URG) &&
1318 !TCP_FIN_RCVD (Tcb->State))
1319 {
1320
1321 DEBUG ((EFI_D_NET, "TcpInput: received urgent data "
1322 "from peer for connected TCB %p\n", Tcb));
1323
1324 Urg = Seg->Seq + Seg->Urg;
1325
1326 if (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_RCVD_URG) &&
1327 TCP_SEQ_GT (Urg, Tcb->RcvUp)) {
1328
1329 Tcb->RcvUp = Urg;
1330 } else {
1331
1332 Tcb->RcvUp = Urg;
1333 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_RCVD_URG);
1334 }
1335 }
1336
1337 //
1338 // Seventh step: Process the segment data
1339 //
1340 if (Seg->End != Seg->Seq) {
1341
1342 if (TCP_FIN_RCVD (Tcb->State)) {
1343
1344 DEBUG ((EFI_D_WARN, "TcpInput: connection reset because"
1345 " data is lost for connected TCB %p\n", Tcb));
1346
1347 goto RESET_THEN_DROP;
1348 }
1349
1350 if (TCP_LOCAL_CLOSED (Tcb->State) && (Nbuf->TotalSize != 0)) {
1351 DEBUG ((EFI_D_WARN, "TcpInput: connection reset because"
1352 " data is lost for connected TCB %p\n", Tcb));
1353
1354 goto RESET_THEN_DROP;
1355 }
1356
1357 TcpQueueData (Tcb, Nbuf);
1358 if (TcpDeliverData (Tcb) == -1) {
1359 goto RESET_THEN_DROP;
1360 }
1361
1362 if (!IsListEmpty (&Tcb->RcvQue)) {
1363 TCP_SET_FLG (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW);
1364 }
1365 }
1366
1367 //
1368 // Eighth step: check the FIN.
1369 // This step is moved to TcpDeliverData. FIN will be
1370 // processed in sequence there. Check the comments in
1371 // the beginning of the file header for information.
1372 //
1373
1374 //
1375 // Tcb is a new child of the listening Parent,
1376 // commit it.
1377 //
1378 if (Parent != NULL) {
1379 Tcb->Parent = Parent;
1380 TcpInsertTcb (Tcb);
1381 }
1382
1383 if ((Tcb->State != TCP_CLOSED) &&
1384 (TcpToSendData (Tcb, 0) == 0) &&
1385 (TCP_FLG_ON (Tcb->CtrlFlag, TCP_CTRL_ACK_NOW) || (Nbuf->TotalSize != 0))) {
1386
1387 TcpToSendAck (Tcb);
1388 }
1389
1390 NetbufFree (Nbuf);
1391 return 0;
1392
1393 RESET_THEN_DROP:
1394 TcpSendReset (Tcb, Head, Len, Dst, Src);
1395
1396 DROP_CONNECTION:
1397 ASSERT ((Tcb != NULL) && (Tcb->Sk != NULL));
1398
1399 NetbufFree (Nbuf);
1400 TcpClose (Tcb);
1401
1402 return -1;
1403
1404 SEND_RESET:
1405
1406 TcpSendReset (Tcb, Head, Len, Dst, Src);
1407
1408 DISCARD:
1409
1410 //
1411 // Tcb is a child of Parent, and it doesn't survive
1412 //
1413 DEBUG ((EFI_D_WARN, "Tcp4Input: Discard a packet\n"));
1414 NetbufFree (Nbuf);
1415
1416 if ((Parent != NULL) && (Tcb != NULL)) {
1417
1418 ASSERT (Tcb->Sk != NULL);
1419 TcpClose (Tcb);
1420 }
1421
1422 return 0;
1423 }
1424
1425
1426 /**
1427 Process the received ICMP error messages for TCP.
1428
1429 @param Nbuf Buffer that contains part of the TCP segment without IP header
1430 truncated from the ICMP error packet.
1431 @param IcmpErr The ICMP error code interpreted from ICMP error packet.
1432 @param Src Source address of the ICMP error message.
1433 @param Dst Destination address of the ICMP error message.
1434
1435 **/
1436 VOID
1437 TcpIcmpInput (
1438 IN NET_BUF *Nbuf,
1439 IN UINT8 IcmpErr,
1440 IN UINT32 Src,
1441 IN UINT32 Dst
1442 )
1443 {
1444 TCP_HEAD *Head;
1445 TCP_CB *Tcb;
1446 TCP_SEQNO Seq;
1447 EFI_STATUS IcmpErrStatus;
1448 BOOLEAN IcmpErrIsHard;
1449 BOOLEAN IcmpErrNotify;
1450
1451 if (Nbuf->TotalSize < sizeof (TCP_HEAD)) {
1452 goto CLEAN_EXIT;
1453 }
1454
1455 Head = (TCP_HEAD *) NetbufGetByte (Nbuf, 0, NULL);
1456 ASSERT (Head != NULL);
1457 Tcb = TcpLocateTcb (
1458 Head->DstPort,
1459 Dst,
1460 Head->SrcPort,
1461 Src,
1462 FALSE
1463 );
1464 if (Tcb == NULL || Tcb->State == TCP_CLOSED) {
1465
1466 goto CLEAN_EXIT;
1467 }
1468
1469 //
1470 // Validate the sequence number.
1471 //
1472 Seq = NTOHL (Head->Seq);
1473 if (!(TCP_SEQ_LEQ (Tcb->SndUna, Seq) && TCP_SEQ_LT (Seq, Tcb->SndNxt))) {
1474
1475 goto CLEAN_EXIT;
1476 }
1477
1478 IcmpErrStatus = IpIoGetIcmpErrStatus (
1479 IcmpErr,
1480 IP_VERSION_4,
1481 &IcmpErrIsHard,
1482 &IcmpErrNotify
1483 );
1484
1485 if (IcmpErrNotify) {
1486
1487 SOCK_ERROR (Tcb->Sk, IcmpErrStatus);
1488 }
1489
1490 if (IcmpErrIsHard) {
1491
1492 TcpClose (Tcb);
1493 }
1494
1495 CLEAN_EXIT:
1496 NetbufFree (Nbuf);
1497 }