A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
tcp-socket-base.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2007 Georgia Tech Research Corporation
3 * Copyright (c) 2010 Adrian Sai-wah Tam
4 *
5 * SPDX-License-Identifier: GPL-2.0-only
6 *
7 * Author: Adrian Sai-wah Tam <adrian.sw.tam@gmail.com>
8 */
9
10#define NS_LOG_APPEND_CONTEXT \
11 if (m_node) \
12 { \
13 std::clog << " [node " << m_node->GetId() << "] "; \
14 }
15
16#include "tcp-socket-base.h"
17
18#include "ipv4-end-point.h"
19#include "ipv4-route.h"
21#include "ipv4.h"
22#include "ipv6-end-point.h"
23#include "ipv6-l3-protocol.h"
24#include "ipv6-route.h"
26#include "rtt-estimator.h"
27#include "tcp-congestion-ops.h"
28#include "tcp-header.h"
29#include "tcp-l4-protocol.h"
31#include "tcp-option-sack.h"
32#include "tcp-option-ts.h"
33#include "tcp-option-winscale.h"
34#include "tcp-rate-ops.h"
35#include "tcp-recovery-ops.h"
36#include "tcp-rx-buffer.h"
37#include "tcp-tx-buffer.h"
38
39#include "ns3/abort.h"
40#include "ns3/data-rate.h"
41#include "ns3/double.h"
42#include "ns3/inet-socket-address.h"
43#include "ns3/inet6-socket-address.h"
44#include "ns3/log.h"
45#include "ns3/node.h"
46#include "ns3/object.h"
47#include "ns3/packet.h"
48#include "ns3/pointer.h"
49#include "ns3/simulation-singleton.h"
50#include "ns3/simulator.h"
51#include "ns3/trace-source-accessor.h"
52#include "ns3/uinteger.h"
53
54#include <algorithm>
55#include <cmath>
56
85
86namespace ns3
87{
88
89NS_LOG_COMPONENT_DEFINE("TcpSocketBase");
90
92
95{
96 static TypeId tid =
97 TypeId("ns3::TcpSocketBase")
99 .SetGroupName("Internet")
100 .AddConstructor<TcpSocketBase>()
101 // .AddAttribute ("TcpState", "State in TCP state machine",
102 // TypeId::ATTR_GET,
103 // EnumValue (CLOSED),
104 // MakeEnumAccessor (&TcpSocketBase::m_state),
105 // MakeEnumChecker (CLOSED, "Closed"))
106 .AddAttribute("MaxSegLifetime",
107 "Maximum segment lifetime in seconds, use for TIME_WAIT state transition "
108 "to CLOSED state",
109 DoubleValue(120), /* RFC793 says MSL=2 minutes*/
112 .AddAttribute("MaxWindowSize",
113 "Max size of advertised window",
114 UintegerValue(65535),
117 .AddAttribute("IcmpCallback",
118 "Callback invoked whenever an icmp error is received on this socket.",
122 .AddAttribute("IcmpCallback6",
123 "Callback invoked whenever an icmpv6 error is received on this socket.",
127 .AddAttribute("WindowScaling",
128 "Enable or disable Window Scaling option",
129 BooleanValue(true),
132 .AddAttribute("Sack",
133 "Enable or disable Sack option",
134 BooleanValue(true),
137 .AddAttribute("Timestamp",
138 "Enable or disable Timestamp option",
139 BooleanValue(true),
142 .AddAttribute("Fack",
143 "Enable or disable FACK option",
144 BooleanValue(false),
147 .AddAttribute(
148 "MinRto",
149 "Minimum retransmit timeout value",
150 TimeValue(Seconds(1)), // RFC 6298 says min RTO=1 sec, but Linux uses 200ms.
151 // See http://www.postel.org/pipermail/end2end-interest/2004-November/004402.html
154 .AddAttribute(
155 "ClockGranularity",
156 "Clock Granularity used in RTO calculations",
157 TimeValue(MilliSeconds(1)), // RFC6298 suggest to use fine clock granularity
161 .AddAttribute("TxBuffer",
162 "TCP Tx buffer",
163 PointerValue(),
166 .AddAttribute("RxBuffer",
167 "TCP Rx buffer",
168 PointerValue(),
171 .AddAttribute("CongestionOps",
172 "Pointer to TcpCongestionOps object",
173 PointerValue(),
176 .AddAttribute("RecoveryOps",
177 "Pointer to TcpRecoveryOps object",
178 PointerValue(),
181 .AddAttribute(
182 "ReTxThreshold",
183 "Threshold for fast retransmit",
184 UintegerValue(3),
187 .AddAttribute("LimitedTransmit",
188 "Enable limited transmit",
189 BooleanValue(true),
192 .AddAttribute("UseEcn",
193 "Parameter to set ECN functionality",
197 "Off",
199 "On",
201 "AcceptOnly"))
202 .AddAttribute("UseAbe",
203 "Parameter to set ABE functionality",
204 BooleanValue(false),
207 .AddTraceSource("RTO",
208 "Retransmission timeout",
210 "ns3::TracedValueCallback::Time")
211 .AddTraceSource("RTT",
212 "Smoothed RTT",
214 "ns3::TracedValueCallback::Time")
215 .AddTraceSource("LastRTT",
216 "RTT of the last (S)ACKed packet",
218 "ns3::TracedValueCallback::Time")
219 .AddTraceSource("NextTxSequence",
220 "Next sequence number to send (SND.NXT)",
222 "ns3::SequenceNumber32TracedValueCallback")
223 .AddTraceSource("HighestSequence",
224 "Highest sequence number ever sent in socket's life time",
226 "ns3::TracedValueCallback::SequenceNumber32")
227 .AddTraceSource("State",
228 "TCP state",
230 "ns3::TcpStatesTracedValueCallback")
231 .AddTraceSource("CongState",
232 "TCP Congestion machine state",
234 "ns3::TcpSocketState::TcpCongStatesTracedValueCallback")
235 .AddTraceSource("EcnState",
236 "Trace ECN state change of socket",
238 "ns3::TcpSocketState::EcnStatesTracedValueCallback")
239 .AddTraceSource("AdvWND",
240 "Advertised Window Size",
242 "ns3::TracedValueCallback::Uint32")
243 .AddTraceSource("RWND",
244 "Remote side's flow control window",
246 "ns3::TracedValueCallback::Uint32")
247 .AddTraceSource("BytesInFlight",
248 "Socket estimation of bytes in flight",
250 "ns3::TracedValueCallback::Uint32")
251 .AddTraceSource("FackAwnd",
252 "Socket estimation of bytes in flight by FACK",
254 "ns3::TracedValueCallback::Uint32")
255 .AddTraceSource("HighestRxSequence",
256 "Highest sequence number received from peer",
258 "ns3::TracedValueCallback::SequenceNumber32")
259 .AddTraceSource("HighestRxAck",
260 "Highest ack received from peer",
262 "ns3::TracedValueCallback::SequenceNumber32")
263 .AddTraceSource("PacingRate",
264 "The current TCP pacing rate",
266 "ns3::TracedValueCallback::DataRate")
267 .AddTraceSource("CongestionWindow",
268 "The TCP connection's congestion window",
270 "ns3::TracedValueCallback::Uint32")
271 .AddTraceSource("CongestionWindowInflated",
272 "The TCP connection's congestion window inflates as in older RFC",
274 "ns3::TracedValueCallback::Uint32")
275 .AddTraceSource("SlowStartThreshold",
276 "TCP slow start threshold (bytes)",
278 "ns3::TracedValueCallback::Uint32")
279 .AddTraceSource("Tx",
280 "Send tcp packet to IP protocol",
282 "ns3::TcpSocketBase::TcpTxRxTracedCallback")
283 .AddTraceSource("Retransmission",
284 "Notification of a TCP retransmission",
286 "ns3::TcpSocketBase::RetransmissionCallback")
287 .AddTraceSource("Rx",
288 "Receive tcp packet from IP protocol",
290 "ns3::TcpSocketBase::TcpTxRxTracedCallback")
291 .AddTraceSource("EcnEchoSeq",
292 "Sequence of last received ECN Echo",
294 "ns3::SequenceNumber32TracedValueCallback")
295 .AddTraceSource("EcnCeSeq",
296 "Sequence of last received CE",
298 "ns3::SequenceNumber32TracedValueCallback")
299 .AddTraceSource("EcnCwrSeq",
300 "Sequence of last received CWR",
302 "ns3::SequenceNumber32TracedValueCallback");
303 return tid;
304}
305
307 : TcpSocket()
308{
309 NS_LOG_FUNCTION(this);
310
312 m_txBuffer->SetRWndCallback(MakeCallback(&TcpSocketBase::GetRWnd, this));
315
316 m_sndFack = 0;
318
319 m_tcb->m_rxBuffer = CreateObject<TcpRxBuffer>();
320
321 m_tcb->m_pacingRate = m_tcb->m_maxPacingRate;
323
324 m_tcb->m_sendEmptyPacketCallback = MakeCallback(&TcpSocketBase::SendEmptyPacket, this);
325
326 bool ok;
327
328 ok = m_tcb->TraceConnectWithoutContext(
329 "PacingRate",
331 NS_ASSERT_MSG(ok, "Could not connect trace source PacingRate");
332
333 ok = m_tcb->TraceConnectWithoutContext("CongestionWindow",
335 NS_ASSERT_MSG(ok, "Could not connect trace source CongestionWindow");
336
337 ok = m_tcb->TraceConnectWithoutContext("CongestionWindowInflated",
339 NS_ASSERT_MSG(ok, "Could not connect trace source CongestionWindowInflated");
340
341 ok = m_tcb->TraceConnectWithoutContext("SlowStartThreshold",
343 NS_ASSERT_MSG(ok, "Could not connect trace source SlowStartThreshold");
344
345 ok = m_tcb->TraceConnectWithoutContext("CongState",
347 NS_ASSERT_MSG(ok, "Could not connect trace source CongState");
348
349 ok = m_tcb->TraceConnectWithoutContext("EcnState",
351 NS_ASSERT_MSG(ok, "Could not connect trace source EcnState");
352
353 ok =
354 m_tcb->TraceConnectWithoutContext("NextTxSequence",
356 NS_ASSERT_MSG(ok, "Could not connect trace source NextTxSequence");
357
358 ok = m_tcb->TraceConnectWithoutContext("HighestSequence",
360 NS_ASSERT_MSG(ok, "Could not connect trace source HighestSequence");
361
362 ok = m_tcb->TraceConnectWithoutContext("BytesInFlight",
364 NS_ASSERT_MSG(ok, "Could not connect trace source BytesInFlight");
365
366 ok = m_tcb->TraceConnectWithoutContext("FackAwnd",
368 NS_ASSERT_MSG(ok, "Could not connect trace source FackAwnd");
369
370 ok = m_tcb->TraceConnectWithoutContext("RTT", MakeCallback(&TcpSocketBase::UpdateRtt, this));
371 NS_ASSERT_MSG(ok, "Could not connect trace source RTT");
372
373 ok = m_tcb->TraceConnectWithoutContext("LastRTT",
375 NS_ASSERT_MSG(ok, "Could not connect trace source LastRTT");
376}
377
378void
385
387 : TcpSocket(sock),
388 // copy object::m_tid and socket::callbacks
390 m_delAckCount(0),
392 m_noDelay(sock.m_noDelay),
397 m_rto(sock.m_rto),
398 m_minRto(sock.m_minRto),
403 m_endPoint(nullptr),
404 m_endPoint6(nullptr),
405 m_node(sock.m_node),
406 m_tcp(sock.m_tcp),
407 m_state(sock.m_state),
408 m_errno(sock.m_errno),
414 m_msl(sock.m_msl),
417 m_rWnd(sock.m_rWnd),
427 m_recover(sock.m_recover),
432 m_txTrace(sock.m_txTrace),
433 m_rxTrace(sock.m_rxTrace),
434 m_pacingTimer(Timer::CANCEL_ON_DESTROY),
438{
439 NS_LOG_FUNCTION(this);
440 NS_LOG_LOGIC("Invoked the copy constructor");
441 // Copy the rtt estimator if it is set
442 if (sock.m_rtt)
443 {
444 m_rtt = sock.m_rtt->Copy();
445 }
446 // Reset all callbacks to null
448 Callback<void, Ptr<Socket>, const Address&> vPSA =
451 SetConnectCallback(vPS, vPS);
452 SetDataSentCallback(vPSUI);
453 SetSendCallback(vPSUI);
454 SetRecvCallback(vPS);
456 m_txBuffer->SetRWndCallback(MakeCallback(&TcpSocketBase::GetRWnd, this));
457 m_tcb = CopyObject(sock.m_tcb);
458 m_tcb->m_rxBuffer = CopyObject(sock.m_tcb->m_rxBuffer);
459
460 m_tcb->m_pacingRate = m_tcb->m_maxPacingRate;
462
464
465 if (sock.m_congestionControl)
466 {
469 m_congestionControl->SetRateOps(m_rateOps);
470 }
471
472 if (sock.m_recoveryOps)
473 {
474 m_recoveryOps = sock.m_recoveryOps->Fork();
475 }
476
477 if (m_tcb->m_sendEmptyPacketCallback.IsNull())
478 {
479 m_tcb->m_sendEmptyPacketCallback = MakeCallback(&TcpSocketBase::SendEmptyPacket, this);
480 }
481
482 m_sndFack = sock.m_sndFack;
484
485 bool ok;
486
487 ok = m_tcb->TraceConnectWithoutContext(
488 "PacingRate",
490 NS_ASSERT_MSG(ok, "Could not connect trace source PacingRate");
491
492 ok = m_tcb->TraceConnectWithoutContext("CongestionWindow",
494 NS_ASSERT_MSG(ok, "Could not connect trace source CongestionWindow");
495
496 ok = m_tcb->TraceConnectWithoutContext("CongestionWindowInflated",
498 NS_ASSERT_MSG(ok, "Could not connect trace source CongestionWindowInflated");
499
500 ok = m_tcb->TraceConnectWithoutContext("SlowStartThreshold",
502 NS_ASSERT_MSG(ok, "Could not connect trace source SlowStartThreshold");
503
504 ok = m_tcb->TraceConnectWithoutContext("CongState",
506 NS_ASSERT_MSG(ok, "Could not connect trace source CongState");
507
508 ok = m_tcb->TraceConnectWithoutContext("EcnState",
510 NS_ASSERT_MSG(ok, "Could not connect trace source EcnState");
511
512 ok =
513 m_tcb->TraceConnectWithoutContext("NextTxSequence",
515 NS_ASSERT_MSG(ok, "Could not connect trace source NextTxSequence");
516
517 ok = m_tcb->TraceConnectWithoutContext("HighestSequence",
519 NS_ASSERT_MSG(ok, "Could not connect trace source HighestSequence");
520 ok = m_tcb->TraceConnectWithoutContext("BytesInFlight",
522 NS_ASSERT_MSG(ok, "Could not connect trace source BytesInFlight");
523
524 ok = m_tcb->TraceConnectWithoutContext("FackAwnd",
526
527 ok = m_tcb->TraceConnectWithoutContext("RTT", MakeCallback(&TcpSocketBase::UpdateRtt, this));
528 NS_ASSERT_MSG(ok, "Could not connect trace source RTT");
529
530 ok = m_tcb->TraceConnectWithoutContext("LastRTT",
532 NS_ASSERT_MSG(ok, "Could not connect trace source LastRTT");
533}
534
536{
537 NS_LOG_FUNCTION(this);
538 m_node = nullptr;
539 if (m_endPoint != nullptr)
540 {
542 /*
543 * Upon Bind, an Ipv4Endpoint is allocated and set to m_endPoint, and
544 * DestroyCallback is set to TcpSocketBase::Destroy. If we called
545 * m_tcp->DeAllocate, it will destroy its Ipv4EndpointDemux::DeAllocate,
546 * which in turn destroys my m_endPoint, and in turn invokes
547 * TcpSocketBase::Destroy to nullify m_node, m_endPoint, and m_tcp.
548 */
549 NS_ASSERT(m_endPoint != nullptr);
550 m_tcp->DeAllocate(m_endPoint);
551 NS_ASSERT(m_endPoint == nullptr);
552 }
553 if (m_endPoint6 != nullptr)
554 {
556 NS_ASSERT(m_endPoint6 != nullptr);
557 m_tcp->DeAllocate(m_endPoint6);
558 NS_ASSERT(m_endPoint6 == nullptr);
559 }
560 m_tcp = nullptr;
562}
563
564/* Associate a node with this TCP socket */
565void
567{
568 m_node = node;
569}
570
571/* Associate the L4 protocol (e.g. mux/demux) with this socket */
572void
577
578/* Set an RTT estimator with this socket */
579void
584
585/* Inherit from Socket class: Returns error code */
588{
589 return m_errno;
590}
591
592/* Inherit from Socket class: Returns socket type, NS3_SOCK_STREAM */
595{
596 return NS3_SOCK_STREAM;
597}
598
599/* Inherit from Socket class: Returns associated node */
602{
603 return m_node;
604}
605
606/* Inherit from Socket class: Bind socket to an end-point in TcpL4Protocol */
607int
609{
610 NS_LOG_FUNCTION(this);
611 m_endPoint = m_tcp->Allocate();
612 if (nullptr == m_endPoint)
613 {
615 return -1;
616 }
617
618 m_tcp->AddSocket(this);
619
620 return SetupCallback();
621}
622
623int
625{
626 NS_LOG_FUNCTION(this);
627 m_endPoint6 = m_tcp->Allocate6();
628 if (nullptr == m_endPoint6)
629 {
631 return -1;
632 }
633
634 m_tcp->AddSocket(this);
635
636 return SetupCallback();
637}
638
639/* Inherit from Socket class: Bind socket (with specific address) to an end-point in TcpL4Protocol
640 */
641int
643{
644 NS_LOG_FUNCTION(this << address);
646 {
648 Ipv4Address ipv4 = transport.GetIpv4();
649 uint16_t port = transport.GetPort();
650 if (ipv4 == Ipv4Address::GetAny() && port == 0)
651 {
652 m_endPoint = m_tcp->Allocate();
653 }
654 else if (ipv4 == Ipv4Address::GetAny() && port != 0)
655 {
656 m_endPoint = m_tcp->Allocate(GetBoundNetDevice(), port);
657 }
658 else if (ipv4 != Ipv4Address::GetAny() && port == 0)
659 {
660 m_endPoint = m_tcp->Allocate(ipv4);
661 }
662 else if (ipv4 != Ipv4Address::GetAny() && port != 0)
663 {
664 m_endPoint = m_tcp->Allocate(GetBoundNetDevice(), ipv4, port);
665 }
666 if (nullptr == m_endPoint)
667 {
669 return -1;
670 }
671 }
672 else if (Inet6SocketAddress::IsMatchingType(address))
673 {
675 Ipv6Address ipv6 = transport.GetIpv6();
676 uint16_t port = transport.GetPort();
677 if (ipv6 == Ipv6Address::GetAny() && port == 0)
678 {
679 m_endPoint6 = m_tcp->Allocate6();
680 }
681 else if (ipv6 == Ipv6Address::GetAny() && port != 0)
682 {
683 m_endPoint6 = m_tcp->Allocate6(GetBoundNetDevice(), port);
684 }
685 else if (ipv6 != Ipv6Address::GetAny() && port == 0)
686 {
687 m_endPoint6 = m_tcp->Allocate6(ipv6);
688 }
689 else if (ipv6 != Ipv6Address::GetAny() && port != 0)
690 {
691 m_endPoint6 = m_tcp->Allocate6(GetBoundNetDevice(), ipv6, port);
692 }
693 if (nullptr == m_endPoint6)
694 {
696 return -1;
697 }
698 }
699 else
700 {
702 return -1;
703 }
704
705 m_tcp->AddSocket(this);
706
707 NS_LOG_LOGIC("TcpSocketBase " << this << " got an endpoint: " << m_endPoint);
708
709 return SetupCallback();
710}
711
712void
714{
716 (m_state == CLOSED) || threshold == m_tcb->m_initialSsThresh,
717 "TcpSocketBase::SetSSThresh() cannot change initial ssThresh after connection started.");
718
719 m_tcb->m_initialSsThresh = threshold;
720}
721
724{
725 return m_tcb->m_initialSsThresh;
726}
727
728void
730{
732 (m_state == CLOSED) || cwnd == m_tcb->m_initialCWnd,
733 "TcpSocketBase::SetInitialCwnd() cannot change initial cwnd after connection started.");
734
735 m_tcb->m_initialCWnd = cwnd;
736}
737
740{
741 return m_tcb->m_initialCWnd;
742}
743
744/* Inherit from Socket class: Initiate connection to a remote address:port */
745int
747{
748 NS_LOG_FUNCTION(this << address);
749
750 // If haven't do so, Bind() this socket first
752 {
753 if (m_endPoint == nullptr)
754 {
755 if (Bind() == -1)
756 {
757 NS_ASSERT(m_endPoint == nullptr);
758 return -1; // Bind() failed
759 }
760 NS_ASSERT(m_endPoint != nullptr);
761 }
763 m_endPoint->SetPeer(transport.GetIpv4(), transport.GetPort());
764 m_endPoint6 = nullptr;
765
766 // Get the appropriate local address and port number from the routing protocol and set up
767 // endpoint
768 if (SetupEndpoint() != 0)
769 {
770 NS_LOG_ERROR("Route to destination does not exist ?!");
771 return -1;
772 }
773 }
774 else if (Inet6SocketAddress::IsMatchingType(address))
775 {
776 // If we are operating on a v4-mapped address, translate the address to
777 // a v4 address and re-call this function
779 Ipv6Address v6Addr = transport.GetIpv6();
780 if (v6Addr.IsIpv4MappedAddress())
781 {
782 Ipv4Address v4Addr = v6Addr.GetIpv4MappedAddress();
783 return Connect(InetSocketAddress(v4Addr, transport.GetPort()));
784 }
785
786 if (m_endPoint6 == nullptr)
787 {
788 if (Bind6() == -1)
789 {
790 NS_ASSERT(m_endPoint6 == nullptr);
791 return -1; // Bind() failed
792 }
793 NS_ASSERT(m_endPoint6 != nullptr);
794 }
795 m_endPoint6->SetPeer(v6Addr, transport.GetPort());
796 m_endPoint = nullptr;
797
798 // Get the appropriate local address and port number from the routing protocol and set up
799 // endpoint
800 if (SetupEndpoint6() != 0)
801 {
802 NS_LOG_ERROR("Route to destination does not exist ?!");
803 return -1;
804 }
805 }
806 else
807 {
809 return -1;
810 }
811
812 // Re-initialize parameters in case this socket is being reused after CLOSE
813 m_rtt->Reset();
816
817 // DoConnect() will do state-checking and send a SYN packet
818 return DoConnect();
819}
820
821/* Inherit from Socket class: Listen on the endpoint for an incoming connection */
822int
824{
825 NS_LOG_FUNCTION(this);
826
827 // Linux quits EINVAL if we're not in CLOSED state, so match what they do
828 if (m_state != CLOSED)
829 {
831 return -1;
832 }
833 // In other cases, set the state to LISTEN and done
834 NS_LOG_DEBUG("CLOSED -> LISTEN");
835 m_state = LISTEN;
836 return 0;
837}
838
839/* Inherit from Socket class: Kill this socket and signal the peer (if any) */
840int
842{
843 NS_LOG_FUNCTION(this);
844 /// @internal
845 /// First we check to see if there is any unread rx data.
846 /// \bugid{426} claims we should send reset in this case.
847 if (m_tcb->m_rxBuffer->Size() != 0)
848 {
849 NS_LOG_WARN("Socket " << this << " << unread rx data during close. Sending reset."
850 << "This is probably due to a bad sink application; check its code");
851 SendRST();
852 return 0;
853 }
854
855 if (m_txBuffer->SizeFromSequence(m_tcb->m_nextTxSequence) > 0)
856 { // App close with pending data must wait until all data transmitted
857 if (!m_closeOnEmpty)
858 {
859 m_closeOnEmpty = true;
860 NS_LOG_INFO("Socket " << this << " deferring close, state " << TcpStateName[m_state]);
861 }
862 return 0;
863 }
864 return DoClose();
865}
866
867/* Inherit from Socket class: Signal a termination of send */
868int
870{
871 NS_LOG_FUNCTION(this);
872
873 // this prevents data from being added to the buffer
874 m_shutdownSend = true;
875 m_closeOnEmpty = true;
876 // if buffer is already empty, send a fin now
877 // otherwise fin will go when buffer empties.
878 if (m_txBuffer->Size() == 0)
879 {
881 {
882 NS_LOG_INFO("Empty tx buffer, send fin");
884
885 if (m_state == ESTABLISHED)
886 { // On active close: I am the first one to send FIN
887 NS_LOG_DEBUG("ESTABLISHED -> FIN_WAIT_1");
889 }
890 else
891 { // On passive close: Peer sent me FIN already
892 NS_LOG_DEBUG("CLOSE_WAIT -> LAST_ACK");
894 }
895 }
896 }
897
898 return 0;
899}
900
901/* Inherit from Socket class: Signal a termination of receive */
902int
904{
905 NS_LOG_FUNCTION(this);
906 m_shutdownRecv = true;
907 return 0;
908}
909
910/* Inherit from Socket class: Send a packet. Parameter flags is not used.
911 Packet has no TCP header. Invoked by upper-layer application */
912int
914{
915 NS_LOG_FUNCTION(this << p);
916 NS_ABORT_MSG_IF(flags, "use of flags is not supported in TcpSocketBase::Send()");
918 {
919 // Store the packet into Tx buffer
920 if (!m_txBuffer->Add(p))
921 { // TxBuffer overflow, send failed
923 return -1;
924 }
925 if (m_shutdownSend)
926 {
928 return -1;
929 }
930
931 m_rateOps->CalculateAppLimited(m_tcb->m_cWnd,
932 m_tcb->m_bytesInFlight,
933 m_tcb->m_segmentSize,
934 m_txBuffer->TailSequence(),
935 m_tcb->m_nextTxSequence,
936 m_txBuffer->GetLost(),
937 m_txBuffer->GetRetransmitsCount());
938
939 // Submit the data to lower layers
940 NS_LOG_LOGIC("txBufSize=" << m_txBuffer->Size() << " state " << TcpStateName[m_state]);
941 if ((m_state == ESTABLISHED || m_state == CLOSE_WAIT) && AvailableWindow() > 0)
942 { // Try to send the data out: Add a little step to allow the application
943 // to fill the buffer
944 if (!m_sendPendingDataEvent.IsPending())
945 {
948 this,
950 }
951 }
952 return p->GetSize();
953 }
954 else
955 { // Connection not established yet
957 return -1; // Send failure
958 }
959}
960
961/* Inherit from Socket class: In TcpSocketBase, it is same as Send() call */
962int
963TcpSocketBase::SendTo(Ptr<Packet> p, uint32_t flags, const Address& /* address */)
964{
965 return Send(p, flags); // SendTo() and Send() are the same
966}
967
968/* Inherit from Socket class: Return data to upper-layer application. Parameter flags
969 is not used. Data is returned as a packet of size no larger than maxSize */
972{
973 NS_LOG_FUNCTION(this);
974 NS_ABORT_MSG_IF(flags, "use of flags is not supported in TcpSocketBase::Recv()");
975 if (m_tcb->m_rxBuffer->Size() == 0 && m_state == CLOSE_WAIT)
976 {
977 return Create<Packet>(); // Send EOF on connection close
978 }
979 Ptr<Packet> outPacket = m_tcb->m_rxBuffer->Extract(maxSize);
980 return outPacket;
981}
982
983/* Inherit from Socket class: Recv and return the remote's address */
986{
987 NS_LOG_FUNCTION(this << maxSize << flags);
988 Ptr<Packet> packet = Recv(maxSize, flags);
989 // Null packet means no data to read, and an empty packet indicates EOF
990 if (packet && packet->GetSize() != 0)
991 {
992 if (m_endPoint != nullptr)
993 {
994 fromAddress =
995 InetSocketAddress(m_endPoint->GetPeerAddress(), m_endPoint->GetPeerPort());
996 }
997 else if (m_endPoint6 != nullptr)
998 {
999 fromAddress =
1000 Inet6SocketAddress(m_endPoint6->GetPeerAddress(), m_endPoint6->GetPeerPort());
1001 }
1002 else
1003 {
1004 fromAddress = InetSocketAddress(Ipv4Address::GetZero(), 0);
1005 }
1006 }
1007 return packet;
1008}
1009
1010/* Inherit from Socket class: Get the max number of bytes an app can send */
1013{
1014 NS_LOG_FUNCTION(this);
1015 return m_txBuffer->Available();
1016}
1017
1018/* Inherit from Socket class: Get the max number of bytes an app can read */
1021{
1022 NS_LOG_FUNCTION(this);
1023 return m_tcb->m_rxBuffer->Available();
1024}
1025
1026/* Inherit from Socket class: Return local address:port */
1027int
1029{
1030 NS_LOG_FUNCTION(this);
1031 if (m_endPoint != nullptr)
1032 {
1033 address = InetSocketAddress(m_endPoint->GetLocalAddress(), m_endPoint->GetLocalPort());
1034 }
1035 else if (m_endPoint6 != nullptr)
1036 {
1037 address = Inet6SocketAddress(m_endPoint6->GetLocalAddress(), m_endPoint6->GetLocalPort());
1038 }
1039 else
1040 { // It is possible to call this method on a socket without a name
1041 // in which case, behavior is unspecified
1042 // Should this return an InetSocketAddress or an Inet6SocketAddress?
1044 }
1045 return 0;
1046}
1047
1048int
1050{
1051 NS_LOG_FUNCTION(this << address);
1052
1053 if (!m_endPoint && !m_endPoint6)
1054 {
1056 return -1;
1057 }
1058
1059 if (m_endPoint)
1060 {
1061 address = InetSocketAddress(m_endPoint->GetPeerAddress(), m_endPoint->GetPeerPort());
1062 }
1063 else if (m_endPoint6)
1064 {
1065 address = Inet6SocketAddress(m_endPoint6->GetPeerAddress(), m_endPoint6->GetPeerPort());
1066 }
1067 else
1068 {
1069 NS_ASSERT(false);
1070 }
1071
1072 return 0;
1073}
1074
1075/* Inherit from Socket class: Bind this socket to the specified NetDevice */
1076void
1078{
1079 NS_LOG_FUNCTION(netdevice);
1080 Socket::BindToNetDevice(netdevice); // Includes sanity check
1081 if (m_endPoint != nullptr)
1082 {
1083 m_endPoint->BindToNetDevice(netdevice);
1084 }
1085
1086 if (m_endPoint6 != nullptr)
1087 {
1088 m_endPoint6->BindToNetDevice(netdevice);
1089 }
1090}
1091
1092/* Clean up after Bind. Set up callback functions in the end-point. */
1093int
1095{
1096 NS_LOG_FUNCTION(this);
1097
1098 if (m_endPoint == nullptr && m_endPoint6 == nullptr)
1099 {
1100 return -1;
1101 }
1102 if (m_endPoint != nullptr)
1103 {
1104 m_endPoint->SetRxCallback(
1106 m_endPoint->SetIcmpCallback(
1108 m_endPoint->SetDestroyCallback(
1110 }
1111 if (m_endPoint6 != nullptr)
1112 {
1113 m_endPoint6->SetRxCallback(
1115 m_endPoint6->SetIcmpCallback(
1117 m_endPoint6->SetDestroyCallback(
1119 }
1120
1121 return 0;
1122}
1123
1124/* Perform the real connection tasks: Send SYN if allowed, RST if invalid */
1125int
1127{
1128 NS_LOG_FUNCTION(this);
1129
1130 // A new connection is allowed only if this socket does not have a connection
1131 if (m_state == CLOSED || m_state == LISTEN || m_state == SYN_SENT || m_state == LAST_ACK ||
1133 { // send a SYN packet and change state into SYN_SENT
1134 // send a SYN packet with ECE and CWR flags set if sender is ECN capable
1135 if (m_tcb->m_useEcn == TcpSocketState::On)
1136 {
1138 }
1139 else
1140 {
1142 }
1143 NS_LOG_DEBUG(TcpStateName[m_state] << " -> SYN_SENT");
1144 m_state = SYN_SENT;
1145 m_tcb->m_ecnState = TcpSocketState::ECN_DISABLED; // because sender is not yet aware about
1146 // receiver's ECN capability
1147 }
1148 else if (m_state != TIME_WAIT)
1149 { // In states SYN_RCVD, ESTABLISHED, FIN_WAIT_1, FIN_WAIT_2, and CLOSING, an connection
1150 // exists. We send RST, tear down everything, and close this socket.
1151 SendRST();
1153 }
1154 return 0;
1155}
1156
1157/* Do the action to close the socket. Usually send a packet with appropriate
1158 flags depended on the current m_state. */
1159int
1161{
1162 NS_LOG_FUNCTION(this);
1163 switch (m_state)
1164 {
1165 case SYN_RCVD:
1166 case ESTABLISHED:
1167 // send FIN to close the peer
1169 NS_LOG_DEBUG("ESTABLISHED -> FIN_WAIT_1");
1171 break;
1172 case CLOSE_WAIT:
1173 // send FIN+ACK to close the peer
1175 NS_LOG_DEBUG("CLOSE_WAIT -> LAST_ACK");
1176 m_state = LAST_ACK;
1177 break;
1178 case SYN_SENT:
1179 case CLOSING:
1180 // Send RST if application closes in SYN_SENT and CLOSING
1181 SendRST();
1183 break;
1184 case LISTEN:
1185 // In this state, move to CLOSED and tear down the end point
1187 break;
1188 case LAST_ACK:
1189 case CLOSED:
1190 case FIN_WAIT_1:
1191 case FIN_WAIT_2:
1192 case TIME_WAIT:
1193 default: /* mute compiler */
1194 // Do nothing in these five states
1195 break;
1196 }
1197 return 0;
1198}
1199
1200/* Peacefully close the socket by notifying the upper layer and deallocate end point */
1201void
1203{
1204 NS_LOG_FUNCTION(this);
1205
1206 if (!m_closeNotified)
1207 {
1209 m_closeNotified = true;
1210 }
1211 if (m_lastAckEvent.IsPending())
1212 {
1213 m_lastAckEvent.Cancel();
1214 }
1215 NS_LOG_DEBUG(TcpStateName[m_state] << " -> CLOSED");
1216 m_state = CLOSED;
1218}
1219
1220/* Tell if a sequence number range is out side the range that my rx buffer can
1221 accept */
1222bool
1224{
1225 if (m_state == LISTEN || m_state == SYN_SENT || m_state == SYN_RCVD)
1226 { // Rx buffer in these states are not initialized.
1227 return false;
1228 }
1229 if (m_state == LAST_ACK || m_state == CLOSING || m_state == CLOSE_WAIT)
1230 { // In LAST_ACK and CLOSING states, it only wait for an ACK and the
1231 // sequence number must equals to m_rxBuffer->NextRxSequence ()
1232 return (m_tcb->m_rxBuffer->NextRxSequence() != head);
1233 }
1234
1235 // In all other cases, check if the sequence number is in range
1236 return (tail < m_tcb->m_rxBuffer->NextRxSequence() ||
1237 m_tcb->m_rxBuffer->MaxRxSequence() <= head);
1238}
1239
1240/* Function called by the L3 protocol when it received a packet to pass on to
1241 the TCP. This function is registered as the "RxCallback" function in
1242 SetupCallback(), which invoked by Bind(), and CompleteFork() */
1243void
1245 Ipv4Header header,
1246 uint16_t port,
1247 Ptr<Ipv4Interface> incomingInterface)
1248{
1249 NS_LOG_LOGIC("Socket " << this << " forward up " << m_endPoint->GetPeerAddress() << ":"
1250 << m_endPoint->GetPeerPort() << " to " << m_endPoint->GetLocalAddress()
1251 << ":" << m_endPoint->GetLocalPort());
1252
1253 Address fromAddress = InetSocketAddress(header.GetSource(), port);
1254 Address toAddress = InetSocketAddress(header.GetDestination(), m_endPoint->GetLocalPort());
1255
1256 TcpHeader tcpHeader;
1257 uint32_t bytesRemoved = packet->PeekHeader(tcpHeader);
1258
1259 if (!IsValidTcpSegment(tcpHeader.GetSequenceNumber(),
1260 bytesRemoved,
1261 packet->GetSize() - bytesRemoved))
1262 {
1263 return;
1264 }
1265
1266 if (header.GetEcn() == Ipv4Header::ECN_CE && m_ecnCESeq < tcpHeader.GetSequenceNumber())
1267 {
1268 NS_LOG_INFO("Received CE flag is valid");
1269 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_CE_RCVD");
1270 m_ecnCESeq = tcpHeader.GetSequenceNumber();
1271 m_tcb->m_ecnState = TcpSocketState::ECN_CE_RCVD;
1273 }
1274 else if (header.GetEcn() != Ipv4Header::ECN_NotECT &&
1275 m_tcb->m_ecnState != TcpSocketState::ECN_DISABLED)
1276 {
1278 }
1279
1280 DoForwardUp(packet, fromAddress, toAddress);
1281}
1282
1283void
1285 Ipv6Header header,
1286 uint16_t port,
1287 Ptr<Ipv6Interface> incomingInterface)
1288{
1289 NS_LOG_LOGIC("Socket " << this << " forward up " << m_endPoint6->GetPeerAddress() << ":"
1290 << m_endPoint6->GetPeerPort() << " to " << m_endPoint6->GetLocalAddress()
1291 << ":" << m_endPoint6->GetLocalPort());
1292
1293 Address fromAddress = Inet6SocketAddress(header.GetSource(), port);
1294 Address toAddress = Inet6SocketAddress(header.GetDestination(), m_endPoint6->GetLocalPort());
1295
1296 TcpHeader tcpHeader;
1297 uint32_t bytesRemoved = packet->PeekHeader(tcpHeader);
1298
1299 if (!IsValidTcpSegment(tcpHeader.GetSequenceNumber(),
1300 bytesRemoved,
1301 packet->GetSize() - bytesRemoved))
1302 {
1303 return;
1304 }
1305
1306 if (header.GetEcn() == Ipv6Header::ECN_CE && m_ecnCESeq < tcpHeader.GetSequenceNumber())
1307 {
1308 NS_LOG_INFO("Received CE flag is valid");
1309 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_CE_RCVD");
1310 m_ecnCESeq = tcpHeader.GetSequenceNumber();
1311 m_tcb->m_ecnState = TcpSocketState::ECN_CE_RCVD;
1313 }
1314 else if (header.GetEcn() != Ipv6Header::ECN_NotECT)
1315 {
1317 }
1318
1319 DoForwardUp(packet, fromAddress, toAddress);
1320}
1321
1322void
1324 uint8_t icmpTtl,
1325 uint8_t icmpType,
1326 uint8_t icmpCode,
1327 uint32_t icmpInfo)
1328{
1329 NS_LOG_FUNCTION(this << icmpSource << static_cast<uint32_t>(icmpTtl)
1330 << static_cast<uint32_t>(icmpType) << static_cast<uint32_t>(icmpCode)
1331 << icmpInfo);
1332 if (!m_icmpCallback.IsNull())
1333 {
1334 m_icmpCallback(icmpSource, icmpTtl, icmpType, icmpCode, icmpInfo);
1335 }
1336}
1337
1338void
1340 uint8_t icmpTtl,
1341 uint8_t icmpType,
1342 uint8_t icmpCode,
1343 uint32_t icmpInfo)
1344{
1345 NS_LOG_FUNCTION(this << icmpSource << static_cast<uint32_t>(icmpTtl)
1346 << static_cast<uint32_t>(icmpType) << static_cast<uint32_t>(icmpCode)
1347 << icmpInfo);
1348 if (!m_icmpCallback6.IsNull())
1349 {
1350 m_icmpCallback6(icmpSource, icmpTtl, icmpType, icmpCode, icmpInfo);
1351 }
1352}
1353
1354bool
1356 const uint32_t tcpHeaderSize,
1357 const uint32_t tcpPayloadSize)
1358{
1359 if (tcpHeaderSize == 0 || tcpHeaderSize > 60)
1360 {
1361 NS_LOG_ERROR("Bytes removed: " << tcpHeaderSize << " invalid");
1362 return false; // Discard invalid packet
1363 }
1364 else if (tcpPayloadSize > 0 && OutOfRange(seq, seq + tcpPayloadSize))
1365 {
1366 // Discard fully out of range data packets
1367 NS_LOG_WARN("At state " << TcpStateName[m_state] << " received packet of seq [" << seq
1368 << ":" << seq + tcpPayloadSize << ") out of range ["
1369 << m_tcb->m_rxBuffer->NextRxSequence() << ":"
1370 << m_tcb->m_rxBuffer->MaxRxSequence() << ")");
1371 // Acknowledgement should be sent for all unacceptable packets (RFC793, p.69)
1373 return false;
1374 }
1375 return true;
1376}
1377
1378void
1379TcpSocketBase::DoForwardUp(Ptr<Packet> packet, const Address& fromAddress, const Address& toAddress)
1380{
1381 // in case the packet still has a priority tag attached, remove it
1382 SocketPriorityTag priorityTag;
1383 packet->RemovePacketTag(priorityTag);
1384
1385 // Peel off TCP header
1386 TcpHeader tcpHeader;
1387 packet->RemoveHeader(tcpHeader);
1388 SequenceNumber32 seq = tcpHeader.GetSequenceNumber();
1389
1390 if (m_state == ESTABLISHED && !(tcpHeader.GetFlags() & TcpHeader::RST))
1391 {
1392 // Check if the sender has responded to ECN echo by reducing the Congestion Window
1393 if (tcpHeader.GetFlags() & TcpHeader::CWR)
1394 {
1395 // Check if a packet with CE bit set is received. If there is no CE bit set, then change
1396 // the state to ECN_IDLE to stop sending ECN Echo messages. If there is CE bit set, the
1397 // packet should continue sending ECN Echo messages
1398 //
1399 if (m_tcb->m_ecnState != TcpSocketState::ECN_CE_RCVD)
1400 {
1401 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_IDLE");
1402 m_tcb->m_ecnState = TcpSocketState::ECN_IDLE;
1403 }
1404 }
1405 }
1406
1407 m_rxTrace(packet, tcpHeader, this);
1408
1409 if (tcpHeader.GetFlags() & TcpHeader::SYN)
1410 {
1411 /* The window field in a segment where the SYN bit is set (i.e., a <SYN>
1412 * or <SYN,ACK>) MUST NOT be scaled (from RFC 7323 page 9). But should be
1413 * saved anyway..
1414 */
1415 m_rWnd = tcpHeader.GetWindowSize();
1416
1418 {
1420 }
1421 else
1422 {
1423 m_winScalingEnabled = false;
1424 }
1425
1427 {
1429 }
1430 else
1431 {
1432 m_sackEnabled = false;
1433 m_txBuffer->SetSackEnabled(false);
1434 }
1435
1436 // When receiving a <SYN> or <SYN-ACK> we should adapt TS to the other end
1437 if (tcpHeader.HasOption(TcpOption::TS) && m_timestampEnabled)
1438 {
1440 tcpHeader.GetSequenceNumber());
1441 }
1442 else
1443 {
1444 m_timestampEnabled = false;
1445 }
1446
1447 // Initialize cWnd and ssThresh
1448 m_tcb->m_cWnd = GetInitialCwnd() * GetSegSize();
1449 m_tcb->m_cWndInfl = m_tcb->m_cWnd;
1450 m_tcb->m_ssThresh = GetInitialSSThresh();
1451
1452 if (tcpHeader.GetFlags() & TcpHeader::ACK)
1453 {
1454 EstimateRtt(tcpHeader);
1455 m_highRxAckMark = tcpHeader.GetAckNumber();
1456 }
1457 }
1458 else if (tcpHeader.GetFlags() & TcpHeader::ACK)
1459 {
1460 NS_ASSERT(!(tcpHeader.GetFlags() & TcpHeader::SYN));
1462 {
1463 if (!tcpHeader.HasOption(TcpOption::TS))
1464 {
1465 // Ignoring segment without TS, RFC 7323
1466 NS_LOG_LOGIC("At state " << TcpStateName[m_state] << " received packet of seq ["
1467 << seq << ":" << seq + packet->GetSize()
1468 << ") without TS option. Silently discard it");
1469 return;
1470 }
1471 else
1472 {
1474 tcpHeader.GetSequenceNumber());
1475 }
1476 }
1477
1478 EstimateRtt(tcpHeader);
1479 UpdateWindowSize(tcpHeader);
1480 }
1481
1482 if (m_rWnd.Get() == 0 && m_persistEvent.IsExpired())
1483 { // Zero window: Enter persist state to send 1 byte to probe
1484 NS_LOG_LOGIC(this << " Enter zerowindow persist state");
1486 this << " Cancelled ReTxTimeout event which was set to expire at "
1487 << (Simulator::Now() + Simulator::GetDelayLeft(m_retxEvent)).GetSeconds());
1488 m_retxEvent.Cancel();
1489 NS_LOG_LOGIC("Schedule persist timeout at time "
1490 << Simulator::Now().GetSeconds() << " to expire at time "
1491 << (Simulator::Now() + m_persistTimeout).GetSeconds());
1495 }
1496
1497 // TCP state machine code in different process functions
1498 // C.f.: tcp_rcv_state_process() in tcp_input.c in Linux kernel
1499 switch (m_state)
1500 {
1501 case ESTABLISHED:
1502 ProcessEstablished(packet, tcpHeader);
1503 break;
1504 case LISTEN:
1505 ProcessListen(packet, tcpHeader, fromAddress, toAddress);
1506 break;
1507 case TIME_WAIT:
1508 // Do nothing
1509 break;
1510 case CLOSED:
1511 // Send RST if the incoming packet is not a RST
1512 if ((tcpHeader.GetFlags() & ~(TcpHeader::PSH | TcpHeader::URG)) != TcpHeader::RST)
1513 { // Since m_endPoint is not configured yet, we cannot use SendRST here
1514 TcpHeader h;
1517 h.SetSequenceNumber(m_tcb->m_nextTxSequence);
1518 h.SetAckNumber(m_tcb->m_rxBuffer->NextRxSequence());
1519 h.SetSourcePort(tcpHeader.GetDestinationPort());
1520 h.SetDestinationPort(tcpHeader.GetSourcePort());
1522 AddOptions(h);
1523 m_txTrace(p, h, this);
1524 m_tcp->SendPacket(p, h, toAddress, fromAddress, m_boundnetdevice);
1525 }
1526 break;
1527 case SYN_SENT:
1528 ProcessSynSent(packet, tcpHeader);
1529 break;
1530 case SYN_RCVD:
1531 ProcessSynRcvd(packet, tcpHeader, fromAddress, toAddress);
1532 break;
1533 case FIN_WAIT_1:
1534 case FIN_WAIT_2:
1535 case CLOSE_WAIT:
1536 ProcessWait(packet, tcpHeader);
1537 break;
1538 case CLOSING:
1539 ProcessClosing(packet, tcpHeader);
1540 break;
1541 case LAST_ACK:
1542 ProcessLastAck(packet, tcpHeader);
1543 break;
1544 default: // mute compiler
1545 break;
1546 }
1547
1548 if (m_rWnd.Get() != 0 && m_persistEvent.IsPending())
1549 { // persist probes end, the other end has increased the window
1551 NS_LOG_LOGIC(this << " Leaving zerowindow persist state");
1552 m_persistEvent.Cancel();
1553
1555 }
1556}
1557
1558/* Received a packet upon ESTABLISHED state. This function is mimicking the
1559 role of tcp_rcv_established() in tcp_input.c in Linux kernel. */
1560void
1562{
1563 NS_LOG_FUNCTION(this << tcpHeader);
1564
1565 // Extract the flags. PSH, URG, CWR and ECE are disregarded.
1566 uint8_t tcpflags =
1568
1569 // Different flags are different events
1570 if (tcpflags == TcpHeader::ACK)
1571 {
1572 if (tcpHeader.GetAckNumber() < m_txBuffer->HeadSequence())
1573 {
1574 // Case 1: If the ACK is a duplicate (SEG.ACK < SND.UNA), it can be ignored.
1575 // Pag. 72 RFC 793
1576 NS_LOG_WARN("Ignored ack of " << tcpHeader.GetAckNumber()
1577 << " SND.UNA = " << m_txBuffer->HeadSequence());
1578
1579 // TODO: RFC 5961 5.2 [Blind Data Injection Attack].[Mitigation]
1580 }
1581 else if (tcpHeader.GetAckNumber() > m_tcb->m_highTxMark)
1582 {
1583 // If the ACK acks something not yet sent (SEG.ACK > HighTxMark) then
1584 // send an ACK, drop the segment, and return.
1585 // Pag. 72 RFC 793
1586 NS_LOG_WARN("Ignored ack of " << tcpHeader.GetAckNumber()
1587 << " HighTxMark = " << m_tcb->m_highTxMark);
1588
1589 // Receiver sets ECE flags when it receives a packet with CE bit on or sender hasn't
1590 // responded to ECN echo sent by receiver
1591 if (m_tcb->m_ecnState == TcpSocketState::ECN_CE_RCVD ||
1593 {
1596 << " -> ECN_SENDING_ECE");
1598 }
1599 else
1600 {
1602 }
1603 }
1604 else
1605 {
1606 // SND.UNA < SEG.ACK =< HighTxMark
1607 // Pag. 72 RFC 793
1608 ReceivedAck(packet, tcpHeader);
1609 }
1610 }
1611 else if (tcpflags == TcpHeader::SYN || tcpflags == (TcpHeader::SYN | TcpHeader::ACK))
1612 {
1613 // (a) Received SYN, old NS-3 behaviour is to set state to SYN_RCVD and
1614 // respond with a SYN+ACK. But it is not a legal state transition as of
1615 // RFC793. Thus this is ignored.
1616
1617 // (b) No action for received SYN+ACK, it is probably a duplicated packet
1618 }
1619 else if (tcpflags == TcpHeader::FIN || tcpflags == (TcpHeader::FIN | TcpHeader::ACK))
1620 { // Received FIN or FIN+ACK, bring down this socket nicely
1621 PeerClose(packet, tcpHeader);
1622 }
1623 else if (tcpflags == 0)
1624 { // No flags means there is only data
1625 ReceivedData(packet, tcpHeader);
1626 if (m_tcb->m_rxBuffer->Finished())
1627 {
1628 PeerClose(packet, tcpHeader);
1629 }
1630 }
1631 else
1632 { // Received RST or the TCP flags is invalid, in either case, terminate this socket
1633 if (tcpflags != TcpHeader::RST)
1634 { // this must be an invalid flag, send reset
1635 NS_LOG_LOGIC("Illegal flag " << TcpHeader::FlagsToString(tcpflags)
1636 << " received. Reset packet is sent.");
1637 SendRST();
1638 }
1640 }
1641}
1642
1643bool
1645{
1646 NS_LOG_FUNCTION(this << static_cast<uint32_t>(kind));
1647
1648 switch (kind)
1649 {
1650 case TcpOption::TS:
1651 return m_timestampEnabled;
1653 return m_winScalingEnabled;
1655 case TcpOption::SACK:
1656 return m_sackEnabled;
1657 default:
1658 break;
1659 }
1660 return false;
1661}
1662
1663void
1664TcpSocketBase::ReadOptions(const TcpHeader& tcpHeader, uint32_t* bytesSacked)
1665{
1666 NS_LOG_FUNCTION(this << tcpHeader);
1667
1668 for (const auto& option : tcpHeader.GetOptionList())
1669 {
1670 // Check only for ACK options here
1671 switch (option->GetKind())
1672 {
1673 case TcpOption::SACK:
1674 *bytesSacked = ProcessOptionSack(option);
1675 break;
1676 default:
1677 continue;
1678 }
1679 }
1680}
1681
1682// Sender should reduce the Congestion Window as a response to receiver's
1683// ECN Echo notification only once per window
1684void
1686{
1687 NS_LOG_FUNCTION(this << currentDelivered);
1688 m_tcb->m_ssThresh = m_congestionControl->GetSsThresh(m_tcb, BytesInFlight());
1689 NS_LOG_DEBUG("Reduce ssThresh to " << m_tcb->m_ssThresh);
1690 // Do not update m_cWnd, under assumption that recovery process will
1691 // gradually bring it down to m_ssThresh. Update the 'inflated' value of
1692 // cWnd used for tracing, however.
1693 m_tcb->m_cWndInfl = m_tcb->m_ssThresh;
1694 NS_ASSERT(m_tcb->m_congState != TcpSocketState::CA_CWR);
1695 NS_LOG_DEBUG(TcpSocketState::TcpCongStateName[m_tcb->m_congState] << " -> CA_CWR");
1696 m_tcb->m_congState = TcpSocketState::CA_CWR;
1697 // CWR state will be exited when the ack exceeds the m_recover variable.
1698 // Do not set m_recoverActive (which applies to a loss-based recovery)
1699 // m_recover corresponds to Linux tp->high_seq
1700 m_recover = m_tcb->m_highTxMark;
1701 if (!m_congestionControl->HasCongControl())
1702 {
1703 // If there is a recovery algorithm, invoke it.
1704 m_recoveryOps->EnterRecovery(m_tcb, m_dupAckCount, UnAckDataCount(), currentDelivered);
1705 NS_LOG_INFO("Enter CWR recovery mode; set cwnd to " << m_tcb->m_cWnd << ", ssthresh to "
1706 << m_tcb->m_ssThresh << ", recover to "
1707 << m_recover);
1708 }
1709}
1710
1711void
1713{
1714 NS_LOG_FUNCTION(this);
1716
1717 NS_LOG_DEBUG(TcpSocketState::TcpCongStateName[m_tcb->m_congState] << " -> CA_RECOVERY");
1718
1719 if (!m_sackEnabled)
1720 {
1721 // One segment has left the network, PLUS the head is lost
1722 m_txBuffer->AddRenoSack();
1723 m_txBuffer->MarkHeadAsLost();
1724 }
1725 else
1726 {
1727 if (!m_txBuffer->IsLost(m_txBuffer->HeadSequence()))
1728 {
1729 // We received 3 dupacks, but the head is not marked as lost
1730 // (received less than 3 SACK block ahead).
1731 // Manually set it as lost.
1732 m_txBuffer->MarkHeadAsLost();
1733 }
1734 }
1735
1736 // RFC 6675, point (4):
1737 // (4) Invoke fast retransmit and enter loss recovery as follows:
1738 // (4.1) RecoveryPoint = HighData
1739 m_recover = m_tcb->m_highTxMark;
1740 m_recoverActive = true;
1741
1743 m_tcb->m_congState = TcpSocketState::CA_RECOVERY;
1744
1745 // (4.2) ssthresh = cwnd = (FlightSize / 2)
1746 // If SACK is not enabled, still consider the head as 'in flight' for
1747 // compatibility with old ns-3 versions
1748 uint32_t bytesInFlight =
1749 m_sackEnabled ? BytesInFlight() : BytesInFlight() + m_tcb->m_segmentSize;
1750 m_tcb->m_ssThresh = m_congestionControl->GetSsThresh(m_tcb, bytesInFlight);
1751
1752 if (!m_congestionControl->HasCongControl())
1753 {
1754 m_recoveryOps->EnterRecovery(m_tcb, m_dupAckCount, UnAckDataCount(), currentDelivered);
1755 NS_LOG_INFO(m_dupAckCount << " dupack. Enter fast recovery mode."
1756 << "Reset cwnd to " << m_tcb->m_cWnd << ", ssthresh to "
1757 << m_tcb->m_ssThresh << " at fast recovery seqnum " << m_recover
1758 << " calculated in flight: " << bytesInFlight);
1759 }
1760
1761 // (4.3) Retransmit the first data segment presumed dropped
1762 uint32_t sz = SendDataPacket(m_highRxAckMark, m_tcb->m_segmentSize, true);
1763 NS_ASSERT_MSG(sz > 0, "SendDataPacket returned zero, indicating zero bytes were sent");
1764 // (4.4) Run SetPipe ()
1765 // (4.5) Proceed to step (C)
1766 // these steps are done after the ProcessAck function (SendPendingData)
1767}
1768
1769void
1771{
1772 NS_LOG_FUNCTION(this);
1773 // NOTE: We do not count the DupAcks received in CA_LOSS, because we
1774 // don't know if they are generated by a spurious retransmission or because
1775 // of a real packet loss. With SACK, it is easy to know, but we do not consider
1776 // dupacks. Without SACK, there are some heuristics in the RFC 6582, but
1777 // for now, we do not implement it, leading to ignoring the dupacks.
1778 if (m_tcb->m_congState == TcpSocketState::CA_LOSS)
1779 {
1780 return;
1781 }
1782
1783 // RFC 6675, Section 5, 3rd paragraph:
1784 // If the incoming ACK is a duplicate acknowledgment per the definition
1785 // in Section 2 (regardless of its status as a cumulative
1786 // acknowledgment), and the TCP is not currently in loss recovery
1787 // the TCP MUST increase DupAcks by one ...
1788 if (m_tcb->m_congState != TcpSocketState::CA_RECOVERY)
1789 {
1790 ++m_dupAckCount;
1791 }
1792
1793 if (m_tcb->m_congState == TcpSocketState::CA_OPEN)
1794 {
1795 // From Open we go Disorder
1797 "From OPEN->DISORDER but with " << m_dupAckCount << " dup ACKs");
1798
1800 m_tcb->m_congState = TcpSocketState::CA_DISORDER;
1801
1802 NS_LOG_DEBUG("CA_OPEN -> CA_DISORDER");
1803 }
1804
1805 if (m_tcb->m_congState == TcpSocketState::CA_RECOVERY)
1806 {
1807 if (!m_sackEnabled)
1808 {
1809 // If we are in recovery and we receive a dupack, one segment
1810 // has left the network. This is equivalent to a SACK of one block.
1811 m_txBuffer->AddRenoSack();
1812 }
1813 if (!m_congestionControl->HasCongControl())
1814 {
1815 m_recoveryOps->DoRecovery(m_tcb, currentDelivered, true);
1816 NS_LOG_INFO(m_dupAckCount << " Dupack received in fast recovery mode."
1817 "Increase cwnd to "
1818 << m_tcb->m_cWnd);
1819 }
1820 }
1821 else if (m_tcb->m_congState == TcpSocketState::CA_DISORDER)
1822 {
1823 // m_dupackCount should not exceed its threshold in CA_DISORDER state
1824 // when m_recoverActive has not been set. When recovery point
1825 // have been set after timeout, the sender could enter into CA_DISORDER
1826 // after receiving new ACK smaller than m_recover. After that, m_dupackCount
1827 // can be equal and larger than m_retxThresh and we should avoid entering
1828 // CA_RECOVERY and reducing sending rate again.
1830
1831 uint32_t fackDiff = 0;
1832 if (m_fackEnabled)
1833 {
1834 uint32_t headSeq = m_txBuffer->HeadSequence().GetValue();
1835 if (m_sndFack > headSeq)
1836 {
1837 fackDiff = m_sndFack - headSeq;
1838 }
1839 }
1840
1841 // RFC 6675, Section 5, continuing:
1842 // ... and take the following steps:
1843 // (1) If DupAcks >= DupThresh, go to step (4).
1844 // Sequence number comparison (m_highRxAckMark >= m_recover) will take
1845 // effect only when m_recover has been set. Hence, we can avoid to use
1846 // m_recover in the last congestion event and fail to enter
1847 // CA_RECOVERY when sequence number is advanced significantly since
1848 // the last congestion event, which could be common for
1849 // bandwidth-greedy application in high speed and reliable network
1850 // (such as datacenter network) whose sending rate is constrained by
1851 // TCP socket buffer size at receiver side.
1852
1853 // Check FACK recovery condition
1854
1855 if ((m_fackEnabled && fackDiff > m_tcb->m_segmentSize * 3) ||
1858 {
1859 EnterRecovery(currentDelivered);
1861 }
1862 // (2) If DupAcks < DupThresh but IsLost (HighACK + 1) returns true
1863 // (indicating at least three segments have arrived above the current
1864 // cumulative acknowledgment point, which is taken to indicate loss)
1865 // go to step (4). Note that m_highRxAckMark is (HighACK + 1)
1866 else if (m_txBuffer->IsLost(m_highRxAckMark))
1867 {
1868 EnterRecovery(currentDelivered);
1870 }
1871 else
1872 {
1873 // (3) The TCP MAY transmit previously unsent data segments as per
1874 // Limited Transmit [RFC5681] ...except that the number of octets
1875 // which may be sent is governed by pipe and cwnd as follows:
1876 //
1877 // (3.1) Set HighRxt to HighACK.
1878 // Not clear in RFC. We don't do this here, since we still have
1879 // to retransmit the segment.
1880
1881 if (!m_sackEnabled && m_limitedTx)
1882 {
1883 m_txBuffer->AddRenoSack();
1884
1885 // In limited transmit, cwnd Infl is not updated.
1886 }
1887 }
1888 }
1889}
1890
1891/* Process the newly received ACK */
1892void
1894{
1895 NS_LOG_FUNCTION(this << tcpHeader);
1896
1897 NS_ASSERT(0 != (tcpHeader.GetFlags() & TcpHeader::ACK));
1898 NS_ASSERT(m_tcb->m_segmentSize > 0);
1899
1900 uint32_t previousLost = m_txBuffer->GetLost();
1901 uint32_t priorInFlight = m_tcb->m_bytesInFlight.Get();
1902
1903 // RFC 6675, Section 5, 1st paragraph:
1904 // Upon the receipt of any ACK containing SACK information, the
1905 // scoreboard MUST be updated via the Update () routine (done in ReadOptions)
1906 uint32_t bytesSacked = 0;
1907 uint64_t previousDelivered = m_rateOps->GetConnectionRate().m_delivered;
1908 ReadOptions(tcpHeader, &bytesSacked);
1909
1910 SequenceNumber32 ackNumber = tcpHeader.GetAckNumber();
1911 SequenceNumber32 oldHeadSequence = m_txBuffer->HeadSequence();
1912
1913 if (ackNumber < oldHeadSequence)
1914 {
1915 NS_LOG_DEBUG("Possibly received a stale ACK (ack number < head sequence)");
1916 // If there is any data piggybacked, store it into m_rxBuffer
1917 if (packet->GetSize() > 0)
1918 {
1919 ReceivedData(packet, tcpHeader);
1920 }
1921 return;
1922 }
1923 if ((ackNumber > oldHeadSequence) && (ackNumber < m_recover) &&
1924 (m_tcb->m_congState == TcpSocketState::CA_RECOVERY))
1925 {
1926 uint32_t segAcked = (ackNumber - oldHeadSequence) / m_tcb->m_segmentSize;
1927 for (uint32_t i = 0; i < segAcked; i++)
1928 {
1929 if (m_txBuffer->IsRetransmittedDataAcked(ackNumber - (i * m_tcb->m_segmentSize)))
1930 {
1931 m_tcb->m_isRetransDataAcked = true;
1932 NS_LOG_DEBUG("Ack Number " << ackNumber << "is ACK of retransmitted packet.");
1933 }
1934 }
1935 }
1936
1937 m_txBuffer->DiscardUpTo(ackNumber, MakeCallback(&TcpRateOps::SkbDelivered, m_rateOps));
1938
1939 auto currentDelivered =
1940 static_cast<uint32_t>(m_rateOps->GetConnectionRate().m_delivered - previousDelivered);
1941 m_tcb->m_lastAckedSackedBytes = currentDelivered;
1942
1943 if (m_tcb->m_congState == TcpSocketState::CA_CWR && (ackNumber > m_recover))
1944 {
1945 // Recovery is over after the window exceeds m_recover
1946 // (although it may be re-entered below if ECE is still set)
1947 NS_LOG_DEBUG(TcpSocketState::TcpCongStateName[m_tcb->m_congState] << " -> CA_OPEN");
1948 m_tcb->m_congState = TcpSocketState::CA_OPEN;
1949 if (!m_congestionControl->HasCongControl())
1950 {
1951 m_tcb->m_cWnd = m_tcb->m_ssThresh.Get();
1952 m_recoveryOps->ExitRecovery(m_tcb);
1954 }
1955 }
1956
1957 if (ackNumber > oldHeadSequence && (m_tcb->m_ecnState != TcpSocketState::ECN_DISABLED) &&
1958 (tcpHeader.GetFlags() & TcpHeader::ECE))
1959 {
1960 if (m_ecnEchoSeq < ackNumber)
1961 {
1962 NS_LOG_INFO("Received ECN Echo is valid");
1963 m_ecnEchoSeq = ackNumber;
1964 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_ECE_RCVD");
1965 m_tcb->m_ecnState = TcpSocketState::ECN_ECE_RCVD;
1966 if (m_tcb->m_congState != TcpSocketState::CA_CWR)
1967 {
1968 EnterCwr(currentDelivered);
1969 }
1970 }
1971 }
1972 else if (m_tcb->m_ecnState == TcpSocketState::ECN_ECE_RCVD &&
1973 !(tcpHeader.GetFlags() & TcpHeader::ECE))
1974 {
1975 m_tcb->m_ecnState = TcpSocketState::ECN_IDLE;
1976 }
1977
1978 // Update bytes in flight before processing the ACK for proper calculation of congestion window
1979 NS_LOG_INFO("Update bytes in flight before processing the ACK.");
1980 BytesInFlight();
1981
1982 bool receivedData = packet->GetSize() > 0;
1983
1984 // RFC 6675 Section 5: 2nd, 3rd paragraph and point (A), (B) implementation
1985 // are inside the function ProcessAck
1986 ProcessAck(ackNumber, (bytesSacked > 0), currentDelivered, oldHeadSequence, receivedData);
1987 m_tcb->m_isRetransDataAcked = false;
1988
1989 if (m_congestionControl->HasCongControl())
1990 {
1991 uint32_t currentLost = m_txBuffer->GetLost();
1992 uint32_t lost =
1993 (currentLost > previousLost) ? currentLost - previousLost : previousLost - currentLost;
1994 auto rateSample = m_rateOps->GenerateSample(currentDelivered,
1995 lost,
1996 false,
1997 priorInFlight,
1998 m_tcb->m_minRtt);
1999 auto rateConn = m_rateOps->GetConnectionRate();
2000 m_congestionControl->CongControl(m_tcb, rateConn, rateSample);
2001 }
2002
2003 // If there is any data piggybacked, store it into m_rxBuffer
2004 if (receivedData)
2005 {
2006 ReceivedData(packet, tcpHeader);
2007 }
2008
2009 // RFC 6675, Section 5, point (C), try to send more data. NB: (C) is implemented
2010 // inside SendPendingData
2012}
2013
2014void
2016 bool scoreboardUpdated,
2017 uint32_t currentDelivered,
2018 const SequenceNumber32& oldHeadSequence,
2019 bool receivedData)
2020{
2021 NS_LOG_FUNCTION(this << ackNumber << scoreboardUpdated << currentDelivered << oldHeadSequence);
2022 // RFC 6675, Section 5, 2nd paragraph:
2023 // If the incoming ACK is a cumulative acknowledgment, the TCP MUST
2024 // reset DupAcks to zero.
2025 bool exitedFastRecovery = false;
2026 uint32_t oldDupAckCount = m_dupAckCount; // remember the old value
2027 m_tcb->m_lastAckedSeq = ackNumber; // Update lastAckedSeq
2028 uint32_t bytesAcked = 0;
2029
2030 /* In RFC 5681 the definition of duplicate acknowledgment was strict:
2031 *
2032 * (a) the receiver of the ACK has outstanding data,
2033 * (b) the incoming acknowledgment carries no data,
2034 * (c) the SYN and FIN bits are both off,
2035 * (d) the acknowledgment number is equal to the greatest acknowledgment
2036 * received on the given connection (TCP.UNA from [RFC793]),
2037 * (e) the advertised window in the incoming acknowledgment equals the
2038 * advertised window in the last incoming acknowledgment.
2039 *
2040 * With RFC 6675, this definition has been reduced:
2041 *
2042 * (a) the ACK is carrying a SACK block that identifies previously
2043 * unacknowledged and un-SACKed octets between HighACK (TCP.UNA) and
2044 * HighData (m_highTxMark)
2045 *
2046 * The check below implements conditions a), b), and d), and c) is prevented by virtue of not
2047 * reaching this code if SYN or FIN is set, and e) is not supported.
2048 */
2049
2050 if (m_fackEnabled && ackNumber == m_txBuffer->HeadSequence() &&
2051 m_tcb->m_congState == TcpSocketState::CA_RECOVERY)
2052 {
2053 if (m_outstandingRetransBytes > m_tcb->m_segmentSize)
2054 {
2055 m_outstandingRetransBytes -= m_tcb->m_segmentSize;
2056 }
2057 else
2058 {
2060 }
2061 }
2062
2063 bool isDupack = m_sackEnabled ? scoreboardUpdated
2064 : (ackNumber == oldHeadSequence &&
2065 ackNumber < m_tcb->m_highTxMark && !receivedData);
2066
2067 NS_LOG_DEBUG("ACK of " << ackNumber << " SND.UNA=" << oldHeadSequence
2068 << " SND.NXT=" << m_tcb->m_nextTxSequence
2069 << " in state: " << TcpSocketState::TcpCongStateName[m_tcb->m_congState]
2070 << " with m_recover: " << m_recover);
2071
2072 // RFC 6675, Section 5, 3rd paragraph:
2073 // If the incoming ACK is a duplicate acknowledgment per the definition
2074 // in Section 2 (regardless of its status as a cumulative
2075 // acknowledgment), and the TCP is not currently in loss recovery
2076 if (isDupack)
2077 {
2078 // loss recovery check is done inside this function thanks to
2079 // the congestion state machine
2080 DupAck(currentDelivered);
2081 }
2082
2083 if (ackNumber == oldHeadSequence && ackNumber == m_tcb->m_highTxMark)
2084 {
2085 // Dupack, but the ACK is precisely equal to the nextTxSequence
2086 return;
2087 }
2088 else if (ackNumber == oldHeadSequence && ackNumber > m_tcb->m_highTxMark)
2089 {
2090 // ACK of the FIN bit ... nextTxSequence is not updated since we
2091 // don't have anything to transmit
2092 NS_LOG_DEBUG("Update nextTxSequence manually to " << ackNumber);
2093 m_tcb->m_nextTxSequence = ackNumber;
2094 }
2095 else if (ackNumber == oldHeadSequence)
2096 {
2097 // DupAck. Artificially call PktsAcked: after all, one segment has been ACKed.
2098 m_congestionControl->PktsAcked(m_tcb, 1, m_tcb->m_srtt);
2099 }
2100 else if (ackNumber > oldHeadSequence)
2101 {
2102 // Please remember that, with SACK, we can enter here even if we
2103 // received a dupack.
2104 bytesAcked = currentDelivered;
2105 uint32_t segsAcked = bytesAcked / m_tcb->m_segmentSize;
2106 m_bytesAckedNotProcessed += bytesAcked % m_tcb->m_segmentSize;
2107 bytesAcked -= bytesAcked % m_tcb->m_segmentSize;
2108
2109 if (m_bytesAckedNotProcessed >= m_tcb->m_segmentSize)
2110 {
2111 segsAcked += 1;
2112 bytesAcked += m_tcb->m_segmentSize;
2113 m_bytesAckedNotProcessed -= m_tcb->m_segmentSize;
2114 }
2115 NS_LOG_DEBUG("Set segsAcked: " << segsAcked
2116 << " based on currentDelivered: " << currentDelivered);
2117
2118 // Dupack count is reset to eventually fast-retransmit after 3 dupacks.
2119 // Any SACK-ed segment will be cleaned up by DiscardUpTo.
2120 // In the case that we advanced SND.UNA, but the ack contains SACK blocks,
2121 // we do not reset. At the third one we will retransmit.
2122 // If we are already in recovery, this check is useless since dupAcks
2123 // are not considered in this phase. When from Recovery we go back
2124 // to open, then dupAckCount is reset anyway.
2125 if (!isDupack)
2126 {
2127 m_dupAckCount = 0;
2128 }
2129
2130 // RFC 6675, Section 5, part (B)
2131 // (B) Upon receipt of an ACK that does not cover RecoveryPoint, the
2132 // following actions MUST be taken:
2133 //
2134 // (B.1) Use Update () to record the new SACK information conveyed
2135 // by the incoming ACK.
2136 // (B.2) Use SetPipe () to re-calculate the number of octets still
2137 // in the network.
2138 //
2139 // (B.1) is done at the beginning, while (B.2) is delayed to part (C) while
2140 // trying to transmit with SendPendingData. We are not allowed to exit
2141 // the CA_RECOVERY phase. Just process this partial ack (RFC 5681)
2142 if (ackNumber < m_recover && m_tcb->m_congState == TcpSocketState::CA_RECOVERY)
2143 {
2144 if (!m_sackEnabled)
2145 {
2146 // Manually set the head as lost, it will be retransmitted.
2147 NS_LOG_INFO("Partial ACK. Manually setting head as lost");
2148 m_txBuffer->MarkHeadAsLost();
2149 }
2150
2151 // Before retransmitting the packet perform DoRecovery and check if
2152 // there is available window
2153 if (!m_congestionControl->HasCongControl() && segsAcked >= 1)
2154 {
2155 m_recoveryOps->DoRecovery(m_tcb, currentDelivered, false);
2156 }
2157
2158 // If the packet is already retransmitted do not retransmit it
2159 if (!m_txBuffer->IsRetransmittedDataAcked(ackNumber + m_tcb->m_segmentSize))
2160 {
2161 DoRetransmit(); // Assume the next seq is lost. Retransmit lost packet
2162 m_tcb->m_cWndInfl = SafeSubtraction(m_tcb->m_cWndInfl, bytesAcked);
2163 }
2164
2165 // This partial ACK acknowledge the fact that one segment has been
2166 // previously lost and now successfully received. All others have
2167 // been processed when they come under the form of dupACKs
2168 m_congestionControl->PktsAcked(m_tcb, 1, m_tcb->m_srtt);
2169 NewAck(ackNumber, m_isFirstPartialAck);
2170
2172 {
2173 NS_LOG_DEBUG("Partial ACK of " << ackNumber
2174 << " and this is the first (RTO will be reset);"
2175 " cwnd set to "
2176 << m_tcb->m_cWnd << " recover seq: " << m_recover
2177 << " dupAck count: " << m_dupAckCount);
2178 m_isFirstPartialAck = false;
2179 }
2180 else
2181 {
2182 NS_LOG_DEBUG("Partial ACK of "
2183 << ackNumber
2184 << " and this is NOT the first (RTO will not be reset)"
2185 " cwnd set to "
2186 << m_tcb->m_cWnd << " recover seq: " << m_recover
2187 << " dupAck count: " << m_dupAckCount);
2188 }
2189 }
2190 // From RFC 6675 section 5.1
2191 // In addition, a new recovery phase (as described in Section 5) MUST NOT
2192 // be initiated until HighACK is greater than or equal to the new value
2193 // of RecoveryPoint.
2194 else if (ackNumber < m_recover && m_tcb->m_congState == TcpSocketState::CA_LOSS)
2195 {
2196 m_congestionControl->PktsAcked(m_tcb, segsAcked, m_tcb->m_srtt);
2197 m_congestionControl->IncreaseWindow(m_tcb, segsAcked);
2198
2199 NS_LOG_DEBUG(" Cong Control Called, cWnd=" << m_tcb->m_cWnd
2200 << " ssTh=" << m_tcb->m_ssThresh);
2201 if (!m_sackEnabled)
2202 {
2204 m_txBuffer->GetSacked() == 0,
2205 "Some segment got dup-acked in CA_LOSS state: " << m_txBuffer->GetSacked());
2206 }
2207 NewAck(ackNumber, true);
2208 }
2209 else if (m_tcb->m_congState == TcpSocketState::CA_CWR)
2210 {
2211 m_congestionControl->PktsAcked(m_tcb, segsAcked, m_tcb->m_srtt);
2212 // TODO: need to check behavior if marking is compounded by loss
2213 // and/or packet reordering
2214 if (!m_congestionControl->HasCongControl() && segsAcked >= 1)
2215 {
2216 m_recoveryOps->DoRecovery(m_tcb, currentDelivered, false);
2217 }
2218 NewAck(ackNumber, true);
2219 }
2220 else
2221 {
2222 if (m_tcb->m_congState == TcpSocketState::CA_OPEN)
2223 {
2224 m_congestionControl->PktsAcked(m_tcb, segsAcked, m_tcb->m_srtt);
2225 }
2226 else if (m_tcb->m_congState == TcpSocketState::CA_DISORDER)
2227 {
2228 if (segsAcked >= oldDupAckCount)
2229 {
2230 m_congestionControl->PktsAcked(m_tcb,
2231 segsAcked - oldDupAckCount,
2232 m_tcb->m_srtt);
2233 }
2234
2235 if (!isDupack)
2236 {
2237 // The network reorder packets. Linux changes the counting lost
2238 // packet algorithm from FACK to NewReno. We simply go back in Open.
2240 m_tcb->m_congState = TcpSocketState::CA_OPEN;
2241 NS_LOG_DEBUG(segsAcked << " segments acked in CA_DISORDER, ack of " << ackNumber
2242 << " exiting CA_DISORDER -> CA_OPEN");
2243 }
2244 else
2245 {
2246 NS_LOG_DEBUG(segsAcked << " segments acked in CA_DISORDER, ack of " << ackNumber
2247 << " but still in CA_DISORDER");
2248 }
2249 }
2250 // RFC 6675, Section 5:
2251 // Once a TCP is in the loss recovery phase, the following procedure
2252 // MUST be used for each arriving ACK:
2253 // (A) An incoming cumulative ACK for a sequence number greater than
2254 // RecoveryPoint signals the end of loss recovery, and the loss
2255 // recovery phase MUST be terminated. Any information contained in
2256 // the scoreboard for sequence numbers greater than the new value of
2257 // HighACK SHOULD NOT be cleared when leaving the loss recovery
2258 // phase.
2259 else if (m_tcb->m_congState == TcpSocketState::CA_RECOVERY)
2260 {
2261 m_isFirstPartialAck = true;
2262
2263 // Recalculate the segs acked, that are from m_recover to ackNumber
2264 // (which are the ones we have not passed to PktsAcked and that
2265 // can increase cWnd)
2266 // TODO: check consistency for dynamic segment size
2267 segsAcked =
2268 static_cast<uint32_t>(ackNumber - oldHeadSequence) / m_tcb->m_segmentSize;
2269 m_congestionControl->PktsAcked(m_tcb, segsAcked, m_tcb->m_srtt);
2272 m_tcb->m_congState = TcpSocketState::CA_OPEN;
2273 exitedFastRecovery = true;
2274 m_dupAckCount = 0; // From recovery to open, reset dupack
2275
2276 NS_LOG_DEBUG(segsAcked << " segments acked in CA_RECOVER, ack of " << ackNumber
2277 << ", exiting CA_RECOVERY -> CA_OPEN");
2278 }
2279 else if (m_tcb->m_congState == TcpSocketState::CA_LOSS)
2280 {
2281 m_isFirstPartialAck = true;
2282
2283 // Recalculate the segs acked, that are from m_recover to ackNumber
2284 // (which are the ones we have not passed to PktsAcked and that
2285 // can increase cWnd)
2286 segsAcked = (ackNumber - m_recover) / m_tcb->m_segmentSize;
2287
2288 m_congestionControl->PktsAcked(m_tcb, segsAcked, m_tcb->m_srtt);
2289
2291 m_tcb->m_congState = TcpSocketState::CA_OPEN;
2292 NS_LOG_DEBUG(segsAcked << " segments acked in CA_LOSS, ack of" << ackNumber
2293 << ", exiting CA_LOSS -> CA_OPEN");
2294 }
2295
2296 if (ackNumber >= m_recover)
2297 {
2298 // All lost segments in the congestion event have been
2299 // retransmitted successfully. The recovery point (m_recover)
2300 // should be deactivated.
2301 m_recoverActive = false;
2302 }
2303
2304 if (exitedFastRecovery)
2305 {
2306 NewAck(ackNumber, true);
2307 m_tcb->m_cWnd = m_tcb->m_ssThresh.Get();
2308 m_recoveryOps->ExitRecovery(m_tcb);
2309 NS_LOG_DEBUG("Leaving Fast Recovery; BytesInFlight() = "
2310 << BytesInFlight() << "; cWnd = " << m_tcb->m_cWnd);
2311 }
2312 if (m_tcb->m_congState == TcpSocketState::CA_OPEN)
2313 {
2314 m_congestionControl->IncreaseWindow(m_tcb, segsAcked);
2315
2316 m_tcb->m_cWndInfl = m_tcb->m_cWnd;
2317
2318 NS_LOG_LOGIC("Congestion control called: cWnd: " << m_tcb->m_cWnd
2319 << " ssTh: " << m_tcb->m_ssThresh
2320 << " segsAcked: " << segsAcked);
2321
2322 NewAck(ackNumber, true);
2323 }
2324 }
2325 }
2326 // Update the pacing rate, since m_congestionControl->IncreaseWindow() or
2327 // m_congestionControl->PktsAcked () may change m_tcb->m_cWnd
2328 // Make sure that control reaches the end of this function and there is no
2329 // return in between
2331}
2332
2333/* Received a packet upon LISTEN state. */
2334void
2336 const TcpHeader& tcpHeader,
2337 const Address& fromAddress,
2338 const Address& toAddress)
2339{
2340 NS_LOG_FUNCTION(this << tcpHeader);
2341
2342 // Extract the flags. PSH, URG, CWR and ECE are disregarded.
2343 uint8_t tcpflags =
2345
2346 // Fork a socket if received a SYN. Do nothing otherwise.
2347 // C.f.: the LISTEN part in tcp_v4_do_rcv() in tcp_ipv4.c in Linux kernel
2348 if (tcpflags != TcpHeader::SYN)
2349 {
2350 return;
2351 }
2352
2353 // Call socket's notify function to let the server app know we got a SYN
2354 // If the server app refuses the connection, do nothing
2355 if (!NotifyConnectionRequest(fromAddress))
2356 {
2357 return;
2358 }
2359 // Clone the socket, simulate fork
2360 Ptr<TcpSocketBase> newSock = Fork();
2361 NS_LOG_LOGIC("Cloned a TcpSocketBase " << newSock);
2363 newSock,
2364 packet,
2365 tcpHeader,
2366 fromAddress,
2367 toAddress);
2368}
2369
2370/* Received a packet upon SYN_SENT */
2371void
2373{
2374 NS_LOG_FUNCTION(this << tcpHeader);
2375
2376 // Extract the flags. PSH and URG are disregarded.
2377 uint8_t tcpflags = tcpHeader.GetFlags() & ~(TcpHeader::PSH | TcpHeader::URG);
2378
2379 if (tcpflags == 0)
2380 { // Bare data, accept it and move to ESTABLISHED state. This is not a normal behaviour. Remove
2381 // this?
2382 NS_LOG_DEBUG("SYN_SENT -> ESTABLISHED");
2384 m_tcb->m_congState = TcpSocketState::CA_OPEN;
2386 m_connected = true;
2387 m_retxEvent.Cancel();
2389 ReceivedData(packet, tcpHeader);
2391 }
2392 else if (tcpflags & TcpHeader::ACK && !(tcpflags & TcpHeader::SYN))
2393 { // Ignore ACK in SYN_SENT
2394 }
2395 else if (tcpflags & TcpHeader::SYN && !(tcpflags & TcpHeader::ACK))
2396 { // Received SYN, move to SYN_RCVD state and respond with SYN+ACK
2397 NS_LOG_DEBUG("SYN_SENT -> SYN_RCVD");
2398 m_state = SYN_RCVD;
2400 m_tcb->m_rxBuffer->SetNextRxSequence(tcpHeader.GetSequenceNumber() + SequenceNumber32(1));
2401 /* Check if we received an ECN SYN packet. Change the ECN state of receiver to ECN_IDLE if
2402 * the traffic is ECN capable and sender has sent ECN SYN packet
2403 */
2404
2405 if (m_tcb->m_useEcn != TcpSocketState::Off &&
2407 {
2408 NS_LOG_INFO("Received ECN SYN packet");
2410 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_IDLE");
2411 m_tcb->m_ecnState = TcpSocketState::ECN_IDLE;
2412 }
2413 else
2414 {
2415 m_tcb->m_ecnState = TcpSocketState::ECN_DISABLED;
2417 }
2418 }
2419 else if (tcpflags & (TcpHeader::SYN | TcpHeader::ACK) &&
2420 m_tcb->m_nextTxSequence + SequenceNumber32(1) == tcpHeader.GetAckNumber())
2421 { // Handshake completed
2422 NS_LOG_DEBUG("SYN_SENT -> ESTABLISHED");
2424 m_tcb->m_congState = TcpSocketState::CA_OPEN;
2426 m_connected = true;
2427 m_retxEvent.Cancel();
2428 m_tcb->m_rxBuffer->SetNextRxSequence(tcpHeader.GetSequenceNumber() + SequenceNumber32(1));
2429 m_tcb->m_highTxMark = ++m_tcb->m_nextTxSequence;
2430 m_txBuffer->SetHeadSequence(m_tcb->m_nextTxSequence);
2431 // Before sending packets, update the pacing rate based on RTT measurement so far
2434
2435 /* Check if we received an ECN SYN-ACK packet. Change the ECN state of sender to ECN_IDLE if
2436 * receiver has sent an ECN SYN-ACK packet and the traffic is ECN Capable
2437 */
2438 if (m_tcb->m_useEcn != TcpSocketState::Off &&
2439 (tcpflags & (TcpHeader::CWR | TcpHeader::ECE)) == (TcpHeader::ECE))
2440 {
2441 NS_LOG_INFO("Received ECN SYN-ACK packet.");
2442 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_IDLE");
2443 m_tcb->m_ecnState = TcpSocketState::ECN_IDLE;
2444 }
2445 else
2446 {
2447 m_tcb->m_ecnState = TcpSocketState::ECN_DISABLED;
2448 }
2451 // Always respond to first data packet to speed up the connection.
2452 // Remove to get the behaviour of old NS-3 code.
2454 }
2455 else
2456 { // Other in-sequence input
2457 if (!(tcpflags & TcpHeader::RST))
2458 { // When (1) rx of FIN+ACK; (2) rx of FIN; (3) rx of bad flags
2459 NS_LOG_LOGIC("Illegal flag combination "
2460 << TcpHeader::FlagsToString(tcpHeader.GetFlags())
2461 << " received in SYN_SENT. Reset packet is sent.");
2462 SendRST();
2463 }
2465 }
2466}
2467
2468/* Received a packet upon SYN_RCVD */
2469void
2471 const TcpHeader& tcpHeader,
2472 const Address& fromAddress,
2473 const Address& /* toAddress */)
2474{
2475 NS_LOG_FUNCTION(this << tcpHeader);
2476
2477 // Extract the flags. PSH, URG, CWR and ECE are disregarded.
2478 uint8_t tcpflags =
2480
2481 if (tcpflags == 0 ||
2482 (tcpflags == TcpHeader::ACK &&
2483 m_tcb->m_nextTxSequence + SequenceNumber32(1) == tcpHeader.GetAckNumber()))
2484 { // If it is bare data, accept it and move to ESTABLISHED state. This is
2485 // possibly due to ACK lost in 3WHS. If in-sequence ACK is received, the
2486 // handshake is completed nicely.
2487 NS_LOG_DEBUG("SYN_RCVD -> ESTABLISHED");
2489 m_tcb->m_congState = TcpSocketState::CA_OPEN;
2491 m_connected = true;
2492 m_retxEvent.Cancel();
2493 m_tcb->m_highTxMark = ++m_tcb->m_nextTxSequence;
2494 m_txBuffer->SetHeadSequence(m_tcb->m_nextTxSequence);
2495 if (m_endPoint)
2496 {
2497 m_endPoint->SetPeer(InetSocketAddress::ConvertFrom(fromAddress).GetIpv4(),
2498 InetSocketAddress::ConvertFrom(fromAddress).GetPort());
2499 }
2500 else if (m_endPoint6)
2501 {
2502 m_endPoint6->SetPeer(Inet6SocketAddress::ConvertFrom(fromAddress).GetIpv6(),
2503 Inet6SocketAddress::ConvertFrom(fromAddress).GetPort());
2504 }
2505 // Always respond to first data packet to speed up the connection.
2506 // Remove to get the behaviour of old NS-3 code.
2508 NotifyNewConnectionCreated(this, fromAddress);
2509 ReceivedAck(packet, tcpHeader);
2510 // Update the pacing rate based on RTT measurement so far
2512 // As this connection is established, the socket is available to send data now
2513 if (GetTxAvailable() > 0)
2514 {
2516 }
2517 }
2518 else if (tcpflags == TcpHeader::SYN)
2519 { // Probably the peer lost my SYN+ACK
2520 m_tcb->m_rxBuffer->SetNextRxSequence(tcpHeader.GetSequenceNumber() + SequenceNumber32(1));
2521 /* Check if we received an ECN SYN packet. Change the ECN state of receiver to ECN_IDLE if
2522 * sender has sent an ECN SYN packet and the traffic is ECN Capable
2523 */
2524 if (m_tcb->m_useEcn != TcpSocketState::Off &&
2525 (tcpHeader.GetFlags() & (TcpHeader::CWR | TcpHeader::ECE)) ==
2527 {
2528 NS_LOG_INFO("Received ECN SYN packet");
2530 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_IDLE");
2531 m_tcb->m_ecnState = TcpSocketState::ECN_IDLE;
2532 }
2533 else
2534 {
2535 m_tcb->m_ecnState = TcpSocketState::ECN_DISABLED;
2537 }
2538 }
2539 else if (tcpflags == (TcpHeader::FIN | TcpHeader::ACK))
2540 {
2541 if (tcpHeader.GetSequenceNumber() == m_tcb->m_rxBuffer->NextRxSequence())
2542 { // In-sequence FIN before connection complete. Set up connection and close.
2543 m_connected = true;
2544 m_retxEvent.Cancel();
2545 m_tcb->m_highTxMark = ++m_tcb->m_nextTxSequence;
2546 m_txBuffer->SetHeadSequence(m_tcb->m_nextTxSequence);
2547 if (m_endPoint)
2548 {
2549 m_endPoint->SetPeer(InetSocketAddress::ConvertFrom(fromAddress).GetIpv4(),
2550 InetSocketAddress::ConvertFrom(fromAddress).GetPort());
2551 }
2552 else if (m_endPoint6)
2553 {
2554 m_endPoint6->SetPeer(Inet6SocketAddress::ConvertFrom(fromAddress).GetIpv6(),
2555 Inet6SocketAddress::ConvertFrom(fromAddress).GetPort());
2556 }
2557 NotifyNewConnectionCreated(this, fromAddress);
2558 PeerClose(packet, tcpHeader);
2559 }
2560 }
2561 else
2562 { // Other in-sequence input
2563 if (tcpflags != TcpHeader::RST)
2564 { // When (1) rx of SYN+ACK; (2) rx of FIN; (3) rx of bad flags
2565 NS_LOG_LOGIC("Illegal flag " << TcpHeader::FlagsToString(tcpflags)
2566 << " received. Reset packet is sent.");
2567 if (m_endPoint)
2568 {
2569 m_endPoint->SetPeer(InetSocketAddress::ConvertFrom(fromAddress).GetIpv4(),
2570 InetSocketAddress::ConvertFrom(fromAddress).GetPort());
2571 }
2572 else if (m_endPoint6)
2573 {
2574 m_endPoint6->SetPeer(Inet6SocketAddress::ConvertFrom(fromAddress).GetIpv6(),
2575 Inet6SocketAddress::ConvertFrom(fromAddress).GetPort());
2576 }
2577 SendRST();
2578 }
2580 }
2581}
2582
2583/* Received a packet upon CLOSE_WAIT, FIN_WAIT_1, or FIN_WAIT_2 states */
2584void
2586{
2587 NS_LOG_FUNCTION(this << tcpHeader);
2588
2589 // Extract the flags. PSH, URG, CWR and ECE are disregarded.
2590 uint8_t tcpflags =
2592
2593 if (packet->GetSize() > 0 && !(tcpflags & TcpHeader::ACK))
2594 { // Bare data, accept it
2595 ReceivedData(packet, tcpHeader);
2596 }
2597 else if (tcpflags == TcpHeader::ACK)
2598 { // Process the ACK, and if in FIN_WAIT_1, conditionally move to FIN_WAIT_2
2599 ReceivedAck(packet, tcpHeader);
2600 if (m_state == FIN_WAIT_1 && m_txBuffer->Size() == 0 &&
2601 tcpHeader.GetAckNumber() == m_tcb->m_highTxMark + SequenceNumber32(1))
2602 { // This ACK corresponds to the FIN sent
2603 NS_LOG_DEBUG("FIN_WAIT_1 -> FIN_WAIT_2");
2605 }
2606 }
2607 else if (tcpflags == TcpHeader::FIN || tcpflags == (TcpHeader::FIN | TcpHeader::ACK))
2608 { // Got FIN, respond with ACK and move to next state
2609 if (tcpflags & TcpHeader::ACK)
2610 { // Process the ACK first
2611 ReceivedAck(packet, tcpHeader);
2612 }
2613 m_tcb->m_rxBuffer->SetFinSequence(tcpHeader.GetSequenceNumber());
2614 }
2615 else if (tcpflags == TcpHeader::SYN || tcpflags == (TcpHeader::SYN | TcpHeader::ACK))
2616 { // Duplicated SYN or SYN+ACK, possibly due to spurious retransmission
2617 return;
2618 }
2619 else
2620 { // This is a RST or bad flags
2621 if (tcpflags != TcpHeader::RST)
2622 {
2623 NS_LOG_LOGIC("Illegal flag " << TcpHeader::FlagsToString(tcpflags)
2624 << " received. Reset packet is sent.");
2625 SendRST();
2626 }
2628 return;
2629 }
2630
2631 // Check if the close responder sent an in-sequence FIN, if so, respond ACK
2632 if ((m_state == FIN_WAIT_1 || m_state == FIN_WAIT_2) && m_tcb->m_rxBuffer->Finished())
2633 {
2634 if (m_state == FIN_WAIT_1)
2635 {
2636 NS_LOG_DEBUG("FIN_WAIT_1 -> CLOSING");
2637 m_state = CLOSING;
2638 if (m_txBuffer->Size() == 0 &&
2639 tcpHeader.GetAckNumber() == m_tcb->m_highTxMark + SequenceNumber32(1))
2640 { // This ACK corresponds to the FIN sent
2641 TimeWait();
2642 }
2643 }
2644 else if (m_state == FIN_WAIT_2)
2645 {
2646 TimeWait();
2647 }
2649 if (!m_shutdownRecv)
2650 {
2652 }
2653 }
2654}
2655
2656/* Received a packet upon CLOSING */
2657void
2659{
2660 NS_LOG_FUNCTION(this << tcpHeader);
2661
2662 // Extract the flags. PSH and URG are disregarded.
2663 uint8_t tcpflags = tcpHeader.GetFlags() & ~(TcpHeader::PSH | TcpHeader::URG);
2664
2665 if (tcpflags == TcpHeader::ACK)
2666 {
2667 if (tcpHeader.GetSequenceNumber() == m_tcb->m_rxBuffer->NextRxSequence())
2668 { // This ACK corresponds to the FIN sent
2669 TimeWait();
2670 }
2671 }
2672 else
2673 { // CLOSING state means simultaneous close, i.e. no one is sending data to
2674 // anyone. If anything other than ACK is received, respond with a reset.
2675 if (tcpflags == TcpHeader::FIN || tcpflags == (TcpHeader::FIN | TcpHeader::ACK))
2676 { // FIN from the peer as well. We can close immediately.
2678 }
2679 else if (tcpflags != TcpHeader::RST)
2680 { // Receive of SYN or SYN+ACK or bad flags or pure data
2681 NS_LOG_LOGIC("Illegal flag " << TcpHeader::FlagsToString(tcpflags)
2682 << " received. Reset packet is sent.");
2683 SendRST();
2684 }
2686 }
2687}
2688
2689/* Received a packet upon LAST_ACK */
2690void
2692{
2693 NS_LOG_FUNCTION(this << tcpHeader);
2694
2695 // Extract the flags. PSH and URG are disregarded.
2696 uint8_t tcpflags = tcpHeader.GetFlags() & ~(TcpHeader::PSH | TcpHeader::URG);
2697
2698 if (tcpflags == 0)
2699 {
2700 ReceivedData(packet, tcpHeader);
2701 }
2702 else if (tcpflags == TcpHeader::ACK)
2703 {
2704 if (tcpHeader.GetSequenceNumber() == m_tcb->m_rxBuffer->NextRxSequence())
2705 { // This ACK corresponds to the FIN sent. This socket closed peacefully.
2707 }
2708 }
2709 else if (tcpflags == TcpHeader::FIN)
2710 { // Received FIN again, the peer probably lost the FIN+ACK
2712 }
2713 else if (tcpflags == (TcpHeader::FIN | TcpHeader::ACK) || tcpflags == TcpHeader::RST)
2714 {
2716 }
2717 else
2718 { // Received a SYN or SYN+ACK or bad flags
2719 NS_LOG_LOGIC("Illegal flag " << TcpHeader::FlagsToString(tcpflags)
2720 << " received. Reset packet is sent.");
2721 SendRST();
2723 }
2724}
2725
2726/* Peer sent me a FIN. Remember its sequence in rx buffer. */
2727void
2729{
2730 NS_LOG_FUNCTION(this << tcpHeader);
2731
2732 // Ignore all out of range packets
2733 if (tcpHeader.GetSequenceNumber() < m_tcb->m_rxBuffer->NextRxSequence() ||
2734 tcpHeader.GetSequenceNumber() > m_tcb->m_rxBuffer->MaxRxSequence())
2735 {
2736 return;
2737 }
2738 // For any case, remember the FIN position in rx buffer first
2739 m_tcb->m_rxBuffer->SetFinSequence(tcpHeader.GetSequenceNumber() +
2740 SequenceNumber32(p->GetSize()));
2741 NS_LOG_LOGIC("Accepted FIN at seq "
2742 << tcpHeader.GetSequenceNumber() + SequenceNumber32(p->GetSize()));
2743 // If there is any piggybacked data, process it
2744 if (p->GetSize())
2745 {
2746 ReceivedData(p, tcpHeader);
2747 }
2748 // Return if FIN is out of sequence, otherwise move to CLOSE_WAIT state by DoPeerClose
2749 if (!m_tcb->m_rxBuffer->Finished())
2750 {
2751 return;
2752 }
2753
2754 // Simultaneous close: Application invoked Close() when we are processing this FIN packet
2755 if (m_state == FIN_WAIT_1)
2756 {
2757 NS_LOG_DEBUG("FIN_WAIT_1 -> CLOSING");
2758 m_state = CLOSING;
2759 return;
2760 }
2761
2762 DoPeerClose(); // Change state, respond with ACK
2763}
2764
2765/* Received a in-sequence FIN. Close down this socket. */
2766void
2768{
2770 m_state == FIN_WAIT_2);
2771
2772 // Move the state to CLOSE_WAIT
2773 NS_LOG_DEBUG(TcpStateName[m_state] << " -> CLOSE_WAIT");
2775
2776 if (!m_closeNotified)
2777 {
2778 // The normal behaviour for an application is that, when the peer sent a in-sequence
2779 // FIN, the app should prepare to close. The app has two choices at this point: either
2780 // respond with ShutdownSend() call to declare that it has nothing more to send and
2781 // the socket can be closed immediately; or remember the peer's close request, wait
2782 // until all its existing data are pushed into the TCP socket, then call Close()
2783 // explicitly.
2784 NS_LOG_LOGIC("TCP " << this << " calling NotifyNormalClose");
2786 m_closeNotified = true;
2787 }
2788 if (m_shutdownSend)
2789 { // The application declares that it would not sent any more, close this socket
2790 Close();
2791 }
2792 else
2793 { // Need to ack, the application will close later
2795 }
2796 if (m_state == LAST_ACK)
2797 {
2798 m_dataRetrCount = m_dataRetries; // prevent endless FINs
2799 NS_LOG_LOGIC("TcpSocketBase " << this << " scheduling LATO1");
2800 Time lastRto = m_rtt->GetEstimate() + Max(m_clockGranularity, m_rtt->GetVariation() * 4);
2802 }
2803}
2804
2805/* Kill this socket. This is a callback function configured to m_endpoint in
2806 SetupCallback(), invoked when the endpoint is destroyed. */
2807void
2809{
2810 NS_LOG_FUNCTION(this);
2811 m_endPoint = nullptr;
2812 if (m_tcp)
2813 {
2814 m_tcp->RemoveSocket(this);
2815 }
2816 NS_LOG_LOGIC(this << " Cancelled ReTxTimeout event which was set to expire at "
2817 << (Simulator::Now() + Simulator::GetDelayLeft(m_retxEvent)).GetSeconds());
2819}
2820
2821/* Kill this socket. This is a callback function configured to m_endpoint in
2822 SetupCallback(), invoked when the endpoint is destroyed. */
2823void
2825{
2826 NS_LOG_FUNCTION(this);
2827 m_endPoint6 = nullptr;
2828 if (m_tcp)
2829 {
2830 m_tcp->RemoveSocket(this);
2831 }
2832 NS_LOG_LOGIC(this << " Cancelled ReTxTimeout event which was set to expire at "
2833 << (Simulator::Now() + Simulator::GetDelayLeft(m_retxEvent)).GetSeconds());
2835}
2836
2837/* Send an empty packet with specified TCP flags */
2838void
2840{
2841 NS_LOG_FUNCTION(this << static_cast<uint32_t>(flags));
2842
2843 if (m_endPoint == nullptr && m_endPoint6 == nullptr)
2844 {
2845 NS_LOG_WARN("Failed to send empty packet due to null endpoint");
2846 return;
2847 }
2848
2850 TcpHeader header;
2851 SequenceNumber32 s = m_tcb->m_nextTxSequence;
2852 TcpPacketType_t packetType = INVALID;
2853
2854 if (flags & TcpHeader::FIN)
2855 {
2856 packetType = TcpPacketType_t::FIN;
2857 flags |= TcpHeader::ACK;
2858 }
2859 else if (m_state == FIN_WAIT_1 || m_state == LAST_ACK || m_state == CLOSING)
2860 {
2861 ++s;
2862 }
2863
2864 if (flags & TcpHeader::SYN)
2865 {
2866 packetType = TcpPacketType_t::SYN;
2867 if (flags & TcpHeader::ACK)
2868 {
2869 packetType = TcpPacketType_t::SYN_ACK;
2870 }
2871 }
2872 else if (flags & TcpHeader::ACK)
2873 {
2874 packetType = TcpPacketType_t::PURE_ACK;
2875 }
2876
2877 if (flags & TcpHeader::RST)
2878 {
2879 packetType = TcpPacketType_t::RST;
2880 }
2881
2882 NS_ASSERT_MSG(packetType != TcpPacketType_t::INVALID, "Invalid TCP packet type");
2883 AddSocketTags(p, IsEct(packetType));
2884
2885 header.SetFlags(flags);
2886 header.SetSequenceNumber(s);
2887 header.SetAckNumber(m_tcb->m_rxBuffer->NextRxSequence());
2888 if (m_endPoint != nullptr)
2889 {
2890 header.SetSourcePort(m_endPoint->GetLocalPort());
2891 header.SetDestinationPort(m_endPoint->GetPeerPort());
2892 }
2893 else
2894 {
2895 header.SetSourcePort(m_endPoint6->GetLocalPort());
2896 header.SetDestinationPort(m_endPoint6->GetPeerPort());
2897 }
2898 AddOptions(header);
2899
2900 // RFC 6298, clause 2.4
2901 m_rto =
2902 Max(m_rtt->GetEstimate() + Max(m_clockGranularity, m_rtt->GetVariation() * 4), m_minRto);
2903
2904 uint16_t windowSize = AdvertisedWindowSize();
2905 bool hasSyn = flags & TcpHeader::SYN;
2906 bool hasFin = flags & TcpHeader::FIN;
2907 bool isAck = flags == TcpHeader::ACK;
2908 if (hasSyn)
2909 {
2911 { // The window scaling option is set only on SYN packets
2912 AddOptionWScale(header);
2913 }
2914
2915 if (m_sackEnabled)
2916 {
2917 AddOptionSackPermitted(header);
2918 }
2919
2920 if (m_synCount == 0)
2921 { // No more connection retries, give up
2922 NS_LOG_LOGIC("Connection failed.");
2923 m_rtt->Reset(); // According to recommendation -> RFC 6298
2925 m_state = CLOSED;
2927 return;
2928 }
2929 else
2930 { // Exponential backoff of connection time out
2931 int backoffCount = 0x1 << (m_synRetries - m_synCount);
2932 m_rto = m_cnTimeout * backoffCount;
2933 m_synCount--;
2934 }
2935
2936 if (m_synRetries - 1 == m_synCount)
2937 {
2938 UpdateRttHistory(s, 0, false);
2939 }
2940 else
2941 { // This is SYN retransmission
2942 UpdateRttHistory(s, 0, true);
2943 }
2944
2945 windowSize = AdvertisedWindowSize(false);
2946 }
2947 header.SetWindowSize(windowSize);
2948
2949 if (flags & TcpHeader::ACK)
2950 { // If sending an ACK, cancel the delay ACK as well
2951 m_delAckEvent.Cancel();
2952 m_delAckCount = 0;
2953 if (m_highTxAck < header.GetAckNumber())
2954 {
2955 m_highTxAck = header.GetAckNumber();
2956 }
2957 if (m_sackEnabled && m_tcb->m_rxBuffer->GetSackListSize() > 0)
2958 {
2959 AddOptionSack(header);
2960 }
2961 NS_LOG_INFO("Sending a pure ACK, acking seq " << m_tcb->m_rxBuffer->NextRxSequence());
2962 }
2963
2964 m_txTrace(p, header, this);
2965
2966 if (m_endPoint != nullptr)
2967 {
2968 m_tcp->SendPacket(p,
2969 header,
2970 m_endPoint->GetLocalAddress(),
2971 m_endPoint->GetPeerAddress(),
2973 }
2974 else
2975 {
2976 m_tcp->SendPacket(p,
2977 header,
2978 m_endPoint6->GetLocalAddress(),
2979 m_endPoint6->GetPeerAddress(),
2981 }
2982
2983 if (m_retxEvent.IsExpired() && (hasSyn || hasFin) && !isAck)
2984 { // Retransmit SYN / SYN+ACK / FIN / FIN+ACK to guard against lost
2985 NS_LOG_LOGIC("Schedule retransmission timeout at time "
2986 << Simulator::Now().GetSeconds() << " to expire at time "
2987 << (Simulator::Now() + m_rto.Get()).GetSeconds());
2989 }
2990}
2991
2992/* This function closes the endpoint completely. Called upon RST_TX action. */
2993void
3001
3002/* Deallocate the end point and cancel all the timers */
3003void
3005{
3006 // note: it shouldn't be necessary to invalidate the callback and manually call
3007 // TcpL4Protocol::RemoveSocket. Alas, if one relies on the endpoint destruction
3008 // callback, there's a weird memory access to a free'd area. Harmless, but valgrind
3009 // considers it an error.
3010
3011 if (m_endPoint != nullptr)
3012 {
3014 m_endPoint->SetDestroyCallback(MakeNullCallback<void>());
3015 m_tcp->DeAllocate(m_endPoint);
3016 m_endPoint = nullptr;
3017 m_tcp->RemoveSocket(this);
3018 }
3019 else if (m_endPoint6 != nullptr)
3020 {
3022 m_endPoint6->SetDestroyCallback(MakeNullCallback<void>());
3023 m_tcp->DeAllocate(m_endPoint6);
3024 m_endPoint6 = nullptr;
3025 m_tcp->RemoveSocket(this);
3026 }
3027}
3028
3029/* Configure the endpoint to a local address. Called by Connect() if Bind() didn't specify one. */
3030int
3032{
3033 NS_LOG_FUNCTION(this);
3034 Ptr<Ipv4> ipv4 = m_node->GetObject<Ipv4>();
3035 NS_ASSERT(ipv4);
3036 if (!ipv4->GetRoutingProtocol())
3037 {
3038 NS_FATAL_ERROR("No Ipv4RoutingProtocol in the node");
3039 }
3040 // Create a dummy packet, then ask the routing function for the best output
3041 // interface's address
3042 Ipv4Header header;
3043 header.SetDestination(m_endPoint->GetPeerAddress());
3044 Socket::SocketErrno errno_;
3045 Ptr<Ipv4Route> route;
3047 route = ipv4->GetRoutingProtocol()->RouteOutput(Ptr<Packet>(), header, oif, errno_);
3048 if (!route)
3049 {
3050 NS_LOG_LOGIC("Route to " << m_endPoint->GetPeerAddress() << " does not exist");
3051 NS_LOG_ERROR(errno_);
3052 m_errno = errno_;
3053 return -1;
3054 }
3055 NS_LOG_LOGIC("Route exists");
3056 m_endPoint->SetLocalAddress(route->GetSource());
3057 return 0;
3058}
3059
3060int
3062{
3063 NS_LOG_FUNCTION(this);
3064 Ptr<Ipv6L3Protocol> ipv6 = m_node->GetObject<Ipv6L3Protocol>();
3065 NS_ASSERT(ipv6);
3066 if (!ipv6->GetRoutingProtocol())
3067 {
3068 NS_FATAL_ERROR("No Ipv6RoutingProtocol in the node");
3069 }
3070 // Create a dummy packet, then ask the routing function for the best output
3071 // interface's address
3072 Ipv6Header header;
3073 header.SetDestination(m_endPoint6->GetPeerAddress());
3074 Socket::SocketErrno errno_;
3075 Ptr<Ipv6Route> route;
3077 route = ipv6->GetRoutingProtocol()->RouteOutput(Ptr<Packet>(), header, oif, errno_);
3078 if (!route)
3079 {
3080 NS_LOG_LOGIC("Route to " << m_endPoint6->GetPeerAddress() << " does not exist");
3081 NS_LOG_ERROR(errno_);
3082 m_errno = errno_;
3083 return -1;
3084 }
3085 NS_LOG_LOGIC("Route exists");
3086 m_endPoint6->SetLocalAddress(route->GetSource());
3087 return 0;
3088}
3089
3090/* This function is called only if a SYN received in LISTEN state. After
3091 TcpSocketBase cloned, allocate a new end point to handle the incoming
3092 connection and send a SYN+ACK to complete the handshake. */
3093void
3095 const TcpHeader& h,
3096 const Address& fromAddress,
3097 const Address& toAddress)
3098{
3099 NS_LOG_FUNCTION(this << p << h << fromAddress << toAddress);
3100 // Get port and address from peer (connecting host)
3101 if (InetSocketAddress::IsMatchingType(toAddress))
3102 {
3103 m_endPoint = m_tcp->Allocate(GetBoundNetDevice(),
3104 InetSocketAddress::ConvertFrom(toAddress).GetIpv4(),
3105 InetSocketAddress::ConvertFrom(toAddress).GetPort(),
3106 InetSocketAddress::ConvertFrom(fromAddress).GetIpv4(),
3107 InetSocketAddress::ConvertFrom(fromAddress).GetPort());
3108 m_endPoint6 = nullptr;
3109 }
3110 else if (Inet6SocketAddress::IsMatchingType(toAddress))
3111 {
3112 m_endPoint6 = m_tcp->Allocate6(GetBoundNetDevice(),
3113 Inet6SocketAddress::ConvertFrom(toAddress).GetIpv6(),
3114 Inet6SocketAddress::ConvertFrom(toAddress).GetPort(),
3115 Inet6SocketAddress::ConvertFrom(fromAddress).GetIpv6(),
3116 Inet6SocketAddress::ConvertFrom(fromAddress).GetPort());
3117 m_endPoint = nullptr;
3118 }
3119 m_tcp->AddSocket(this);
3120
3121 // Change the cloned socket from LISTEN state to SYN_RCVD
3122 NS_LOG_DEBUG("LISTEN -> SYN_RCVD");
3123 m_state = SYN_RCVD;
3126 SetupCallback();
3127 // Set the sequence number and send SYN+ACK
3128 m_tcb->m_rxBuffer->SetNextRxSequence(h.GetSequenceNumber() + SequenceNumber32(1));
3129
3130 /* Check if we received an ECN SYN packet. Change the ECN state of receiver to ECN_IDLE if
3131 * sender has sent an ECN SYN packet and the traffic is ECN Capable
3132 */
3133 if (m_tcb->m_useEcn != TcpSocketState::Off &&
3135 {
3137 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_IDLE");
3138 m_tcb->m_ecnState = TcpSocketState::ECN_IDLE;
3139 }
3140 else
3141 {
3143 m_tcb->m_ecnState = TcpSocketState::ECN_DISABLED;
3144 }
3145}
3146
3147void
3149{ // Wrapper to protected function NotifyConnectionSucceeded() so that it can
3150 // be called as a scheduled event
3152 // The if-block below was moved from ProcessSynSent() to here because we need
3153 // to invoke the NotifySend() only after NotifyConnectionSucceeded() to
3154 // reflect the behaviour in the real world.
3155 if (GetTxAvailable() > 0)
3156 {
3158 }
3159}
3160
3161void
3163{
3164 /*
3165 * Add tags for each socket option.
3166 * Note that currently the socket adds both IPv4 tag and IPv6 tag
3167 * if both options are set. Once the packet got to layer three, only
3168 * the corresponding tags will be read.
3169 */
3170 if (GetIpTos())
3171 {
3172 SocketIpTosTag ipTosTag;
3173 if (m_tcb->m_ecnState != TcpSocketState::ECN_DISABLED && !CheckNoEcn(GetIpTos()) && isEct)
3174 {
3175 ipTosTag.SetTos(MarkEcnCodePoint(GetIpTos(), m_tcb->m_ectCodePoint));
3176 }
3177 else
3178 {
3179 // Set the last received ipTos
3180 ipTosTag.SetTos(GetIpTos());
3181 }
3182 p->AddPacketTag(ipTosTag);
3183 }
3184 else
3185 {
3186 if ((m_tcb->m_ecnState != TcpSocketState::ECN_DISABLED && p->GetSize() > 0 && isEct) ||
3187 m_tcb->m_ecnMode == TcpSocketState::DctcpEcn)
3188 {
3189 SocketIpTosTag ipTosTag;
3190 ipTosTag.SetTos(MarkEcnCodePoint(GetIpTos(), m_tcb->m_ectCodePoint));
3191 p->AddPacketTag(ipTosTag);
3192 }
3193 }
3194
3195 if (IsManualIpv6Tclass())
3196 {
3197 SocketIpv6TclassTag ipTclassTag;
3198 if (m_tcb->m_ecnState != TcpSocketState::ECN_DISABLED && !CheckNoEcn(GetIpv6Tclass()) &&
3199 isEct)
3200 {
3201 ipTclassTag.SetTclass(MarkEcnCodePoint(GetIpv6Tclass(), m_tcb->m_ectCodePoint));
3202 }
3203 else
3204 {
3205 // Set the last received ipTos
3206 ipTclassTag.SetTclass(GetIpv6Tclass());
3207 }
3208 p->AddPacketTag(ipTclassTag);
3209 }
3210 else
3211 {
3212 if ((m_tcb->m_ecnState != TcpSocketState::ECN_DISABLED && p->GetSize() > 0 && isEct) ||
3213 m_tcb->m_ecnMode == TcpSocketState::DctcpEcn)
3214 {
3215 SocketIpv6TclassTag ipTclassTag;
3216 ipTclassTag.SetTclass(MarkEcnCodePoint(GetIpv6Tclass(), m_tcb->m_ectCodePoint));
3217 p->AddPacketTag(ipTclassTag);
3218 }
3219 }
3220
3221 if (IsManualIpTtl())
3222 {
3223 SocketIpTtlTag ipTtlTag;
3224 ipTtlTag.SetTtl(GetIpTtl());
3225 p->AddPacketTag(ipTtlTag);
3226 }
3227
3229 {
3230 SocketIpv6HopLimitTag ipHopLimitTag;
3231 ipHopLimitTag.SetHopLimit(GetIpv6HopLimit());
3232 p->AddPacketTag(ipHopLimitTag);
3233 }
3234
3235 uint8_t priority = GetPriority();
3236 if (priority)
3237 {
3238 SocketPriorityTag priorityTag;
3239 priorityTag.SetPriority(priority);
3240 p->ReplacePacketTag(priorityTag);
3241 }
3242}
3243
3244/* Extract at most maxSize bytes from the TxBuffer at sequence seq, add the
3245 TCP header, and send to TcpL4Protocol */
3248{
3249 NS_LOG_FUNCTION(this << seq << maxSize << withAck);
3250
3251 bool isStartOfTransmission = BytesInFlight() == 0U;
3252 TcpTxItem* outItem = m_txBuffer->CopyFromSequence(maxSize, seq);
3253
3254 m_rateOps->SkbSent(outItem, isStartOfTransmission);
3255
3256 bool isRetransmission = outItem->IsRetrans();
3257 Ptr<Packet> p = outItem->GetPacketCopy();
3258 uint32_t sz = p->GetSize(); // Size of packet
3259 uint8_t flags = withAck ? TcpHeader::ACK : 0;
3260 uint32_t remainingData = m_txBuffer->SizeFromSequence(seq + SequenceNumber32(sz));
3261
3262 // TCP sender should not send data out of the window advertised by the
3263 // peer when it is not retransmission.
3264 NS_ASSERT(isRetransmission ||
3265 ((m_highRxAckMark + SequenceNumber32(m_rWnd)) >= (seq + SequenceNumber32(maxSize))));
3266
3267 if (IsPacingEnabled())
3268 {
3269 NS_LOG_INFO("Pacing is enabled");
3270 if (m_pacingTimer.IsExpired())
3271 {
3272 NS_LOG_DEBUG("Current Pacing Rate " << m_tcb->m_pacingRate);
3273 NS_LOG_DEBUG("Timer is in expired state, activate it "
3274 << m_tcb->m_pacingRate.Get().CalculateBytesTxTime(sz));
3275 m_pacingTimer.Schedule(m_tcb->m_pacingRate.Get().CalculateBytesTxTime(sz));
3276 }
3277 else
3278 {
3279 NS_LOG_INFO("Timer is already in running state");
3280 }
3281 }
3282 else
3283 {
3284 NS_LOG_INFO("Pacing is disabled");
3285 }
3286
3287 if (withAck)
3288 {
3289 m_delAckEvent.Cancel();
3290 m_delAckCount = 0;
3291 }
3292
3293 if (m_tcb->m_ecnState == TcpSocketState::ECN_ECE_RCVD &&
3294 m_ecnEchoSeq.Get() > m_ecnCWRSeq.Get() && !isRetransmission)
3295 {
3296 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_CWR_SENT");
3297 m_tcb->m_ecnState = TcpSocketState::ECN_CWR_SENT;
3298 m_ecnCWRSeq = seq;
3299 flags |= TcpHeader::CWR;
3300 NS_LOG_INFO("CWR flags set");
3301 }
3302
3303 bool isEct = IsEct(isRetransmission ? TcpPacketType_t::RE_XMT : TcpPacketType_t::DATA);
3304 AddSocketTags(p, isEct);
3305
3306 if (m_closeOnEmpty && (remainingData == 0))
3307 {
3308 flags |= TcpHeader::FIN;
3309 if (m_state == ESTABLISHED)
3310 { // On active close: I am the first one to send FIN
3311 NS_LOG_DEBUG("ESTABLISHED -> FIN_WAIT_1");
3313 }
3314 else if (m_state == CLOSE_WAIT)
3315 { // On passive close: Peer sent me FIN already
3316 NS_LOG_DEBUG("CLOSE_WAIT -> LAST_ACK");
3317 m_state = LAST_ACK;
3318 }
3319 }
3320 TcpHeader header;
3321 header.SetFlags(flags);
3322 header.SetSequenceNumber(seq);
3323 header.SetAckNumber(m_tcb->m_rxBuffer->NextRxSequence());
3324 if (m_endPoint)
3325 {
3326 header.SetSourcePort(m_endPoint->GetLocalPort());
3327 header.SetDestinationPort(m_endPoint->GetPeerPort());
3328 }
3329 else
3330 {
3331 header.SetSourcePort(m_endPoint6->GetLocalPort());
3332 header.SetDestinationPort(m_endPoint6->GetPeerPort());
3333 }
3335 AddOptions(header);
3336
3337 if (m_retxEvent.IsExpired())
3338 {
3339 // Schedules retransmit timeout. m_rto should be already doubled.
3340
3341 NS_LOG_LOGIC(this << " SendDataPacket Schedule ReTxTimeout at time "
3342 << Simulator::Now().GetSeconds() << " to expire at time "
3343 << (Simulator::Now() + m_rto.Get()).GetSeconds());
3345 }
3346
3347 m_txTrace(p, header, this);
3348 if (isRetransmission)
3349 {
3350 if (m_endPoint)
3351 {
3353 header,
3354 m_endPoint->GetLocalAddress(),
3355 m_endPoint->GetPeerAddress(),
3356 this);
3357 }
3358 else
3359 {
3361 header,
3362 m_endPoint6->GetLocalAddress(),
3363 m_endPoint6->GetPeerAddress(),
3364 this);
3365 }
3366 }
3367
3368 if (m_endPoint)
3369 {
3370 m_tcp->SendPacket(p,
3371 header,
3372 m_endPoint->GetLocalAddress(),
3373 m_endPoint->GetPeerAddress(),
3375 NS_LOG_DEBUG("Send segment of size "
3376 << sz << " with remaining data " << remainingData << " via TcpL4Protocol to "
3377 << m_endPoint->GetPeerAddress() << ". Header " << header);
3378 }
3379 else
3380 {
3381 m_tcp->SendPacket(p,
3382 header,
3383 m_endPoint6->GetLocalAddress(),
3384 m_endPoint6->GetPeerAddress(),
3386 NS_LOG_DEBUG("Send segment of size "
3387 << sz << " with remaining data " << remainingData << " via TcpL4Protocol to "
3388 << m_endPoint6->GetPeerAddress() << ". Header " << header);
3389 }
3390
3391 // Signal to congestion control whether the cwnd is fully used
3392 // This is a simple version of Linux tcp_cwnd_validate() but following
3393 // the principle implemented in Linux that limits the updating of cwnd
3394 // (in the congestion controls) when flight size is >= cwnd
3395 // send will also be cwnd limited if less then one segment of cwnd is available
3396 m_tcb->m_isCwndLimited = (m_tcb->m_cWnd < BytesInFlight() + m_tcb->m_segmentSize);
3397
3398 UpdateRttHistory(seq, sz, isRetransmission);
3399
3400 // Update bytes sent during recovery phase
3401 if (m_tcb->m_congState == TcpSocketState::CA_RECOVERY ||
3402 m_tcb->m_congState == TcpSocketState::CA_CWR)
3403 {
3404 m_recoveryOps->UpdateBytesSent(sz);
3405 }
3406
3407 // Notify the application of the data being sent unless this is a retransmit
3408 if (!isRetransmission)
3409 {
3411 this,
3412 (seq + sz - m_tcb->m_highTxMark.Get()));
3413 }
3414 // Update highTxMark
3415 m_tcb->m_highTxMark = std::max(seq + sz, m_tcb->m_highTxMark.Get());
3416 return sz;
3417}
3418
3419void
3420TcpSocketBase::UpdateRttHistory(const SequenceNumber32& seq, uint32_t sz, bool isRetransmission)
3421{
3422 NS_LOG_FUNCTION(this);
3423
3424 // update the history of sequence numbers used to calculate the RTT
3425 if (!isRetransmission)
3426 { // This is the next expected one, just log at end
3427 m_history.emplace_back(seq, sz, Simulator::Now());
3428 }
3429 else
3430 { // This is a retransmit, find in list and mark as re-tx
3431 for (auto i = m_history.begin(); i != m_history.end(); ++i)
3432 {
3433 if ((seq >= i->seq) && (seq < (i->seq + SequenceNumber32(i->count))))
3434 { // Found it
3435 i->retx = true;
3436 i->count = ((seq + SequenceNumber32(sz)) - i->seq); // And update count in hist
3437 break;
3438 }
3439 }
3440 }
3441}
3442
3443// Note that this function did not implement the PSH flag
3446{
3447 NS_LOG_FUNCTION(this << withAck);
3448 if (m_txBuffer->Size() == 0)
3449 {
3450 return 0; // Nothing to send
3451 }
3452 if (m_endPoint == nullptr && m_endPoint6 == nullptr)
3453 {
3455 "TcpSocketBase::SendPendingData: No endpoint; m_shutdownSend=" << m_shutdownSend);
3456 return 0; // Is this the right way to handle this condition?
3457 }
3458
3459 uint32_t nPacketsSent = 0;
3460 uint32_t availableWindow = AvailableWindow();
3461
3462 // RFC 6675, Section (C)
3463 // If cwnd - pipe >= 1 SMSS, the sender SHOULD transmit one or more
3464 // segments as follows:
3465 // (NOTE: We check > 0, and do the checks for segmentSize in the following
3466 // else branch to control silly window syndrome and Nagle)
3467 while (availableWindow > 0)
3468 {
3469 if (IsPacingEnabled())
3470 {
3471 NS_LOG_INFO("Pacing is enabled");
3472 if (m_pacingTimer.IsRunning())
3473 {
3474 NS_LOG_INFO("Skipping Packet due to pacing" << m_pacingTimer.GetDelayLeft());
3475 break;
3476 }
3477 NS_LOG_INFO("Timer is not running");
3478 }
3479
3481 {
3482 NS_LOG_INFO("FIN_WAIT and OPEN state; no data to transmit");
3483 break;
3484 }
3485 // (C.1) The scoreboard MUST be queried via NextSeg () for the
3486 // sequence number range of the next segment to transmit (if
3487 // any), and the given segment sent. If NextSeg () returns
3488 // failure (no data to send), return without sending anything
3489 // (i.e., terminate steps C.1 -- C.5).
3490 SequenceNumber32 next;
3491 SequenceNumber32 nextHigh;
3492 bool enableRule3 = m_sackEnabled && m_tcb->m_congState == TcpSocketState::CA_RECOVERY;
3493 if (!m_txBuffer->NextSeg(&next, &nextHigh, enableRule3))
3494 {
3495 NS_LOG_INFO("no valid seq to transmit, or no data available");
3496 break;
3497 }
3498 else
3499 {
3500 // It's time to transmit, but before do silly window and Nagle's check
3501 uint32_t availableData = m_txBuffer->SizeFromSequence(next);
3502
3503 // If there's less app data than the full window, ask the app for more
3504 // data before trying to send
3505 if (availableData < availableWindow)
3506 {
3508 }
3509
3510 // Stop sending if we need to wait for a larger Tx window (prevent silly window
3511 // syndrome) but continue if we don't have data
3512 if (availableWindow < m_tcb->m_segmentSize && availableData > availableWindow)
3513 {
3514 NS_LOG_LOGIC("Preventing Silly Window Syndrome. Wait to send.");
3515 break; // No more
3516 }
3517 // Nagle's algorithm (RFC896): Hold off sending if there is unacked data
3518 // in the buffer and the amount of data to send is less than one segment
3519 if (!m_noDelay && UnAckDataCount() > 0 && availableData < m_tcb->m_segmentSize)
3520 {
3521 NS_LOG_DEBUG("Invoking Nagle's algorithm for seq "
3522 << next << ", SFS: " << m_txBuffer->SizeFromSequence(next)
3523 << ". Wait to send.");
3524 break;
3525 }
3526
3527 uint32_t s = std::min(availableWindow, m_tcb->m_segmentSize);
3528 // NextSeg () may have further constrained the segment size
3529 auto maxSizeToSend = static_cast<uint32_t>(nextHigh - next);
3530 s = std::min(s, maxSizeToSend);
3531
3532 // (C.2) If any of the data octets sent in (C.1) are below HighData,
3533 // HighRxt MUST be set to the highest sequence number of the
3534 // retransmitted segment unless NextSeg () rule (4) was
3535 // invoked for this retransmission.
3536 // (C.3) If any of the data octets sent in (C.1) are above HighData,
3537 // HighData must be updated to reflect the transmission of
3538 // previously unsent data.
3539 //
3540 // These steps are done in m_txBuffer with the tags.
3541 if (m_tcb->m_nextTxSequence != next)
3542 {
3543 m_tcb->m_nextTxSequence = next;
3544 }
3545 if (m_tcb->m_bytesInFlight.Get() == 0)
3546 {
3548 }
3549 uint32_t sz = SendDataPacket(m_tcb->m_nextTxSequence, s, withAck);
3550
3551 NS_LOG_LOGIC(" rxwin " << m_rWnd << " segsize " << m_tcb->m_segmentSize
3552 << " highestRxAck " << m_txBuffer->HeadSequence() << " pd->Size "
3553 << m_txBuffer->Size() << " pd->SFS "
3554 << m_txBuffer->SizeFromSequence(m_tcb->m_nextTxSequence));
3555
3556 NS_LOG_DEBUG("cWnd: " << m_tcb->m_cWnd << " total unAck: " << UnAckDataCount()
3557 << " sent seq " << m_tcb->m_nextTxSequence << " size " << sz);
3558 m_tcb->m_nextTxSequence += sz;
3559 ++nPacketsSent;
3560 if (IsPacingEnabled())
3561 {
3562 NS_LOG_INFO("Pacing is enabled");
3563 if (m_pacingTimer.IsExpired())
3564 {
3565 NS_LOG_DEBUG("Current Pacing Rate " << m_tcb->m_pacingRate);
3566 NS_LOG_DEBUG("Timer is in expired state, activate it "
3567 << m_tcb->m_pacingRate.Get().CalculateBytesTxTime(sz));
3568 m_pacingTimer.Schedule(m_tcb->m_pacingRate.Get().CalculateBytesTxTime(sz));
3569 break;
3570 }
3571 }
3572 }
3573
3574 // (C.4) The estimate of the amount of data outstanding in the
3575 // network must be updated by incrementing pipe by the number
3576 // of octets transmitted in (C.1).
3577 //
3578 // Done in BytesInFlight, inside AvailableWindow.
3579 availableWindow = AvailableWindow();
3580
3581 // (C.5) If cwnd - pipe >= 1 SMSS, return to (C.1)
3582 // loop again!
3583 }
3584
3585 if (nPacketsSent > 0)
3586 {
3587 if (!m_sackEnabled)
3588 {
3589 if (!m_limitedTx)
3590 {
3591 // We can't transmit in CA_DISORDER without limitedTx active
3593 }
3594 }
3595
3596 NS_LOG_DEBUG("SendPendingData sent " << nPacketsSent << " segments");
3597 }
3598 else
3599 {
3600 NS_LOG_DEBUG("SendPendingData no segments sent");
3601 }
3602 return nPacketsSent;
3603}
3604
3607{
3608 return m_tcb->m_highTxMark - m_txBuffer->HeadSequence();
3609}
3610
3613{
3614 uint32_t bytesInFlight = m_txBuffer->BytesInFlight();
3615 // Ugly, but we are not modifying the state; m_bytesInFlight is used
3616 // only for tracing purpose.
3617 m_tcb->m_bytesInFlight = bytesInFlight;
3618
3619 NS_LOG_DEBUG("Returning calculated bytesInFlight: " << bytesInFlight);
3620 return bytesInFlight;
3621}
3622
3625{
3626 return std::min(m_rWnd.Get(), m_tcb->m_cWnd.Get());
3627}
3628
3631{
3632 uint32_t win = Window(); // Number of bytes allowed to be outstanding
3633
3634 if (m_sackEnabled && m_fackEnabled && win >= m_tcb->m_ssThresh)
3635 {
3636 // Update awnd (Data sender's estimate of the actual quantity of data outstanding in the
3637 // network)
3638 NS_LOG_DEBUG("FACK is enabled and win >= ssthresh (" << m_tcb->m_ssThresh << ")");
3639
3640 uint32_t sndNxt = (m_tcb->m_highTxMark.Get().GetValue());
3641 uint32_t retranData = m_txBuffer->GetRetransmitsCount();
3642 uint32_t awnd = sndNxt - m_sndFack + retranData;
3643 m_tcb->m_fackAwnd = awnd;
3644
3645 NS_LOG_DEBUG("SndNxt: " << sndNxt << ", SndFack: " << m_sndFack << ", AWND: " << awnd
3646 << ", RetranData :" << retranData);
3647
3648 uint32_t awndDiff = (win > awnd) ? (win - awnd) : 0;
3649 NS_LOG_DEBUG("AWND: " << awnd << ", win: " << win << ", AWND_DIFF: " << awndDiff);
3650 return awndDiff;
3651 }
3652
3653 uint32_t inflight = BytesInFlight();
3654
3655 if (inflight >= win)
3656 {
3657 return 0;
3658 }
3659
3660 return win - inflight;
3661}
3662
3663uint16_t
3665{
3666 NS_LOG_FUNCTION(this << scale);
3667 uint32_t w;
3668
3669 // We don't want to advertise 0 after a FIN is received. So, we just use
3670 // the previous value of the advWnd.
3671 if (m_tcb->m_rxBuffer->GotFin())
3672 {
3673 w = m_advWnd;
3674 }
3675 else
3676 {
3677 NS_ASSERT_MSG(m_tcb->m_rxBuffer->MaxRxSequence() - m_tcb->m_rxBuffer->NextRxSequence() >= 0,
3678 "Unexpected sequence number values");
3679 w = static_cast<uint32_t>(m_tcb->m_rxBuffer->MaxRxSequence() -
3680 m_tcb->m_rxBuffer->NextRxSequence());
3681 }
3682
3683 // Ugly, but we are not modifying the state, that variable
3684 // is used only for tracing purpose.
3685 if (w != m_advWnd)
3686 {
3687 const_cast<TcpSocketBase*>(this)->m_advWnd = w;
3688 }
3689 if (scale)
3690 {
3691 w >>= m_rcvWindShift;
3692 }
3693 if (w > m_maxWinSize)
3694 {
3695 w = m_maxWinSize;
3696 NS_LOG_WARN("Adv window size truncated to "
3697 << m_maxWinSize << "; possibly to avoid overflow of the 16-bit integer");
3698 }
3699 NS_LOG_LOGIC("Returning AdvertisedWindowSize of " << static_cast<uint16_t>(w));
3700 return static_cast<uint16_t>(w);
3701}
3702
3703// Receipt of new packet, put into Rx buffer
3704void
3706{
3707 NS_LOG_FUNCTION(this << tcpHeader);
3708 NS_LOG_DEBUG("Data segment, seq=" << tcpHeader.GetSequenceNumber()
3709 << " pkt size=" << p->GetSize());
3710
3711 // Put into Rx buffer
3712 SequenceNumber32 expectedSeq = m_tcb->m_rxBuffer->NextRxSequence();
3713 if (!m_tcb->m_rxBuffer->Add(p, tcpHeader))
3714 { // Insert failed: No data or RX buffer full
3715 if (m_tcb->m_ecnState == TcpSocketState::ECN_CE_RCVD ||
3717 {
3719 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_SENDING_ECE");
3721 }
3722 else
3723 {
3725 }
3726 return;
3727 }
3728 // Notify app to receive if necessary
3729 if (expectedSeq < m_tcb->m_rxBuffer->NextRxSequence())
3730 { // NextRxSeq advanced, we have something to send to the app
3731 if (!m_shutdownRecv)
3732 {
3734 }
3735 // Handle exceptions
3736 if (m_closeNotified)
3737 {
3738 NS_LOG_WARN("Why TCP " << this << " got data after close notification?");
3739 }
3740 // If we received FIN before and now completed all "holes" in rx buffer,
3741 // invoke peer close procedure
3742 if (m_tcb->m_rxBuffer->Finished() && (tcpHeader.GetFlags() & TcpHeader::FIN) == 0)
3743 {
3744 DoPeerClose();
3745 return;
3746 }
3747 }
3748 // Now send a new ACK packet acknowledging all received and delivered data
3749 if (m_tcb->m_rxBuffer->Size() > m_tcb->m_rxBuffer->Available() ||
3750 m_tcb->m_rxBuffer->NextRxSequence() > expectedSeq + p->GetSize())
3751 { // A gap exists in the buffer, or we filled a gap: Always ACK
3753 if (m_tcb->m_ecnState == TcpSocketState::ECN_CE_RCVD ||
3755 {
3757 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_SENDING_ECE");
3759 }
3760 else
3761 {
3763 }
3764 }
3765 else
3766 { // In-sequence packet: ACK if delayed ack count allows
3768 {
3769 m_delAckEvent.Cancel();
3770 m_delAckCount = 0;
3772 if (m_tcb->m_ecnState == TcpSocketState::ECN_CE_RCVD ||
3774 {
3775 NS_LOG_DEBUG("Congestion algo " << m_congestionControl->GetName());
3778 << " -> ECN_SENDING_ECE");
3780 }
3781 else
3782 {
3784 }
3785 }
3786 else if (!m_delAckEvent.IsExpired())
3787 {
3789 }
3790 else if (m_delAckEvent.IsExpired())
3791 {
3796 this << " scheduled delayed ACK at "
3798 }
3799 }
3800}
3801
3802Time
3803TcpSocketBase::CalculateRttSample(const TcpHeader& tcpHeader, const RttHistory& rttHistory)
3804{
3805 NS_LOG_FUNCTION(this);
3806 SequenceNumber32 ackSeq = tcpHeader.GetAckNumber();
3807 Time rtt;
3808
3809 if (ackSeq >= (rttHistory.seq + SequenceNumber32(rttHistory.count)))
3810 {
3811 // As per RFC 6298 (Section 3)
3812 // RTT samples MUST NOT be made using segments that were
3813 // retransmitted (and thus for which it is ambiguous whether the reply
3814 // was for the first instance of the packet or a later instance). The
3815 // only case when TCP can safely take RTT samples from retransmitted
3816 // segments is when the TCP timestamp option is employed, since
3817 // the timestamp option removes the ambiguity regarding which instance
3818 // of the data segment triggered the acknowledgment.
3819 if (m_timestampEnabled && tcpHeader.HasOption(TcpOption::TS))
3820 {
3823 rtt = TcpOptionTS::ElapsedTimeFromTsValue(ts->GetEcho());
3824 if (rtt.IsZero())
3825 {
3826 NS_LOG_LOGIC("TcpSocketBase::EstimateRtt - RTT calculated from TcpOption::TS "
3827 "is zero, approximating to 1us.");
3828 NS_LOG_DEBUG("RTT calculated from TcpOption::TS is zero, updating rtt to 1us.");
3829 rtt = MicroSeconds(1);
3830 }
3831 }
3832 else if (!rttHistory.retx)
3833 {
3834 // Elapsed time since the packet was transmitted
3835 rtt = Simulator::Now() - rttHistory.time;
3836 }
3837 }
3838 return rtt;
3839}
3840
3841void
3843{
3844 NS_LOG_FUNCTION(this);
3845 SequenceNumber32 ackSeq = tcpHeader.GetAckNumber();
3846 Time rtt;
3847
3848 // An ack has been received, calculate rtt and log this measurement
3849 // Note we use a linear search (O(n)) for this since for the common
3850 // case the ack'ed packet will be at the head of the list
3851 if (!m_history.empty())
3852 {
3853 RttHistory& earliestTransmittedPktHistory = m_history.front();
3854 rtt = CalculateRttSample(tcpHeader, earliestTransmittedPktHistory);
3855
3856 // Store ACKed packet that has the latest transmission time to update `lastRtt`
3857 RttHistory latestTransmittedPktHistory = earliestTransmittedPktHistory;
3858
3859 // Delete all ACK history with seq <= ack
3860 while (!m_history.empty())
3861 {
3862 RttHistory& rttHistory = m_history.front();
3863 if ((rttHistory.seq + SequenceNumber32(rttHistory.count)) > ackSeq)
3864 {
3865 break; // Done removing
3866 }
3867
3868 latestTransmittedPktHistory = rttHistory;
3869 m_history.pop_front(); // Remove
3870 }
3871
3872 // In case of multiple packets being ACKed in a single acknowledgement, `m_lastRtt` is
3873 // RTT of the last (S)ACKed packet calculated using the data packet with the latest
3874 // transmission time
3875 Time lastRtt = CalculateRttSample(tcpHeader, latestTransmittedPktHistory);
3876 if (!lastRtt.IsZero())
3877 {
3878 NS_LOG_DEBUG("Last RTT sample updated to: " << lastRtt);
3879 m_tcb->m_lastRtt = lastRtt;
3880 }
3881 }
3882
3883 if (!rtt.IsZero())
3884 {
3885 m_rtt->Measurement(rtt); // Log the measurement
3886 // RFC 6298, clause 2.4
3887 m_rto = Max(m_rtt->GetEstimate() + Max(m_clockGranularity, m_rtt->GetVariation() * 4),
3888 m_minRto);
3889 m_tcb->m_srtt = m_rtt->GetEstimate();
3890 m_tcb->m_minRtt = std::min(m_tcb->m_srtt.Get(), m_tcb->m_minRtt);
3891 NS_LOG_INFO(this << m_tcb->m_srtt << m_tcb->m_minRtt);
3892 }
3893}
3894
3895// Called by the ReceivedAck() when new ACK received and by ProcessSynRcvd()
3896// when the three-way handshake completed. This cancels retransmission timer
3897// and advances Tx window
3898void
3899TcpSocketBase::NewAck(const SequenceNumber32& ack, bool resetRTO)
3900{
3901 NS_LOG_FUNCTION(this << ack);
3902
3903 // Reset the data retransmission count. We got a new ACK!
3905
3906 // Update m_sndFack if possible
3907 if (m_fackEnabled && ack.GetValue() > m_sndFack)
3908 {
3909 NS_LOG_INFO(" m_sndFack " << m_sndFack << " updated by normal ack to " << ack.GetValue());
3910 m_sndFack = ack.GetValue();
3911 }
3912
3913 if (m_state != SYN_RCVD && resetRTO)
3914 { // Set RTO unless the ACK is received in SYN_RCVD state
3916 this << " Cancelled ReTxTimeout event which was set to expire at "
3917 << (Simulator::Now() + Simulator::GetDelayLeft(m_retxEvent)).GetSeconds());
3918 m_retxEvent.Cancel();
3919 // On receiving a "New" ack we restart retransmission timer .. RFC 6298
3920 // RFC 6298, clause 2.4
3921 m_rto = Max(m_rtt->GetEstimate() + Max(m_clockGranularity, m_rtt->GetVariation() * 4),
3922 m_minRto);
3923
3924 NS_LOG_LOGIC(this << " Schedule ReTxTimeout at time " << Simulator::Now().GetSeconds()
3925 << " to expire at time "
3926 << (Simulator::Now() + m_rto.Get()).GetSeconds());
3928 }
3929
3930 // Note the highest ACK and tell app to send more
3931 NS_LOG_LOGIC("TCP " << this << " NewAck " << ack << " numberAck "
3932 << (ack - m_txBuffer->HeadSequence())); // Number bytes ack'ed
3933
3934 if (GetTxAvailable() > 0)
3935 {
3937 }
3938 if (ack > m_tcb->m_nextTxSequence)
3939 {
3940 m_tcb->m_nextTxSequence = ack; // If advanced
3941 }
3942 if (m_txBuffer->Size() == 0 && m_state != FIN_WAIT_1 && m_state != CLOSING)
3943 { // No retransmit timer if no data to retransmit
3945 this << " Cancelled ReTxTimeout event which was set to expire at "
3946 << (Simulator::Now() + Simulator::GetDelayLeft(m_retxEvent)).GetSeconds());
3947 m_retxEvent.Cancel();
3948 }
3949}
3950
3951// Retransmit timeout
3952void
3954{
3955 NS_LOG_FUNCTION(this);
3956 NS_LOG_LOGIC(this << " ReTxTimeout Expired at time " << Simulator::Now().GetSeconds());
3957 // If erroneous timeout in closed/timed-wait state, just return
3958 if (m_state == CLOSED || m_state == TIME_WAIT)
3959 {
3960 return;
3961 }
3962
3963 if (m_state == SYN_SENT)
3964 {
3965 NS_ASSERT(m_synCount > 0);
3966 if (m_tcb->m_useEcn == TcpSocketState::On)
3967 {
3969 }
3970 else
3971 {
3973 }
3974 return;
3975 }
3976
3977 // Retransmit non-data packet: Only if in FIN_WAIT_1 or CLOSING state
3978 if (m_txBuffer->Size() == 0)
3979 {
3980 if (m_state == FIN_WAIT_1 || m_state == CLOSING)
3981 { // Must have lost FIN, re-send
3983 }
3984 return;
3985 }
3986
3987 NS_LOG_DEBUG("Checking if Connection is Established");
3988 // If all data are received (non-closing socket and nothing to send), just return
3989 if (m_state <= ESTABLISHED && m_txBuffer->HeadSequence() >= m_tcb->m_highTxMark &&
3990 m_txBuffer->Size() == 0)
3991 {
3992 NS_LOG_DEBUG("Already Sent full data" << m_txBuffer->HeadSequence() << " "
3993 << m_tcb->m_highTxMark);
3994 return;
3995 }
3996
3997 if (m_dataRetrCount == 0)
3998 {
3999 NS_LOG_INFO("No more data retries available. Dropping connection");
4002 return;
4003 }
4004 else
4005 {
4007 }
4008
4009 uint32_t inFlightBeforeRto = BytesInFlight();
4010 bool resetSack = !m_sackEnabled; // Reset SACK information if SACK is not enabled.
4011 // The information in the TcpTxBuffer is guessed, in this case.
4012
4013 // Reset dupAckCount
4014 m_dupAckCount = 0;
4015 if (!m_sackEnabled)
4016 {
4017 m_txBuffer->ResetRenoSack();
4018 }
4019
4020 // From RFC 6675, Section 5.1
4021 // [RFC2018] suggests that a TCP sender SHOULD expunge the SACK
4022 // information gathered from a receiver upon a retransmission timeout
4023 // (RTO) "since the timeout might indicate that the data receiver has
4024 // reneged." Additionally, a TCP sender MUST "ignore prior SACK
4025 // information in determining which data to retransmit."
4026 // It has been suggested that, as long as robust tests for
4027 // reneging are present, an implementation can retain and use SACK
4028 // information across a timeout event [Errata1610].
4029 // The head of the sent list will not be marked as sacked, therefore
4030 // will be retransmitted, if the receiver renegotiate the SACK blocks
4031 // that we received.
4032 m_txBuffer->SetSentListLost(resetSack);
4033
4034 // From RFC 6675, Section 5.1
4035 // If an RTO occurs during loss recovery as specified in this document,
4036 // RecoveryPoint MUST be set to HighData. Further, the new value of
4037 // RecoveryPoint MUST be preserved and the loss recovery algorithm
4038 // outlined in this document MUST be terminated.
4039 m_recover = m_tcb->m_highTxMark;
4040 m_recoverActive = true;
4041
4042 // RFC 6298, clause 2.5, double the timer
4043 Time doubledRto = m_rto + m_rto;
4044 m_rto = Min(doubledRto, Time::FromDouble(60, Time::S));
4045
4046 // Empty RTT history
4047 m_history.clear();
4048
4049 // Please don't reset highTxMark, it is used for retransmission detection
4050
4051 // When a TCP sender detects segment loss using the retransmission timer
4052 // and the given segment has not yet been resent by way of the
4053 // retransmission timer, decrease ssThresh
4054 if (m_tcb->m_congState != TcpSocketState::CA_LOSS || !m_txBuffer->IsHeadRetransmitted())
4055 {
4056 m_tcb->m_ssThresh = m_congestionControl->GetSsThresh(m_tcb, inFlightBeforeRto);
4057 }
4058
4059 // Cwnd set to 1 MSS
4062 m_tcb->m_congState = TcpSocketState::CA_LOSS;
4063 m_tcb->m_cWnd = m_tcb->m_segmentSize;
4064 m_tcb->m_cWndInfl = m_tcb->m_cWnd;
4065
4066 m_pacingTimer.Cancel();
4067
4068 NS_LOG_DEBUG("RTO. Reset cwnd to " << m_tcb->m_cWnd << ", ssthresh to " << m_tcb->m_ssThresh
4069 << ", restart from seqnum " << m_txBuffer->HeadSequence()
4070 << " doubled rto to " << m_rto.Get().GetSeconds() << " s");
4071
4073 "There are some bytes in flight after an RTO: " << BytesInFlight());
4074
4076
4077 NS_ASSERT_MSG(BytesInFlight() <= m_tcb->m_segmentSize,
4078 "In flight (" << BytesInFlight() << ") there is more than one segment ("
4079 << m_tcb->m_segmentSize << ")");
4080}
4081
4082void
4098
4099void
4101{
4102 NS_LOG_FUNCTION(this);
4103
4104 m_lastAckEvent.Cancel();
4105 if (m_state == LAST_ACK)
4106 {
4107 if (m_dataRetrCount == 0)
4108 {
4109 NS_LOG_INFO("LAST-ACK: No more data retries available. Dropping connection");
4112 return;
4113 }
4116 NS_LOG_LOGIC("TcpSocketBase " << this << " rescheduling LATO1");
4117 Time lastRto = m_rtt->GetEstimate() + Max(m_clockGranularity, m_rtt->GetVariation() * 4);
4119 }
4120}
4121
4122// Send 1-byte data to probe for the window size at the receiver when
4123// the local knowledge tells that the receiver has zero window size
4124// C.f.: RFC793 p.42, RFC1112 sec.4.2.2.17
4125void
4127{
4128 NS_LOG_LOGIC("PersistTimeout expired at " << Simulator::Now().GetSeconds());
4130 std::min(Seconds(60), Time(2 * m_persistTimeout)); // max persist timeout = 60s
4131 Ptr<Packet> p = m_txBuffer->CopyFromSequence(1, m_tcb->m_nextTxSequence)->GetPacketCopy();
4132 m_txBuffer->ResetLastSegmentSent();
4133 TcpHeader tcpHeader;
4134 tcpHeader.SetSequenceNumber(m_tcb->m_nextTxSequence);
4135 tcpHeader.SetAckNumber(m_tcb->m_rxBuffer->NextRxSequence());
4137 if (m_endPoint != nullptr)
4138 {
4139 tcpHeader.SetSourcePort(m_endPoint->GetLocalPort());
4140 tcpHeader.SetDestinationPort(m_endPoint->GetPeerPort());
4141 }
4142 else
4143 {
4144 tcpHeader.SetSourcePort(m_endPoint6->GetLocalPort());
4145 tcpHeader.SetDestinationPort(m_endPoint6->GetPeerPort());
4146 }
4147 AddOptions(tcpHeader);
4148 // Send a packet tag for setting ECT bits in IP header
4149 if (m_tcb->m_ecnState != TcpSocketState::ECN_DISABLED)
4150 {
4152 }
4153 m_txTrace(p, tcpHeader, this);
4154
4155 if (m_endPoint != nullptr)
4156 {
4157 m_tcp->SendPacket(p,
4158 tcpHeader,
4159 m_endPoint->GetLocalAddress(),
4160 m_endPoint->GetPeerAddress(),
4162 }
4163 else
4164 {
4165 m_tcp->SendPacket(p,
4166 tcpHeader,
4167 m_endPoint6->GetLocalAddress(),
4168 m_endPoint6->GetPeerAddress(),
4170 }
4171
4172 NS_LOG_LOGIC("Schedule persist timeout at time "
4173 << Simulator::Now().GetSeconds() << " to expire at time "
4174 << (Simulator::Now() + m_persistTimeout).GetSeconds());
4176}
4177
4178void
4180{
4181 NS_LOG_FUNCTION(this);
4182 bool res;
4183 SequenceNumber32 seq;
4184 SequenceNumber32 seqHigh;
4185 uint32_t maxSizeToSend;
4186
4187 // Find the first segment marked as lost and not retransmitted. With Reno,
4188 // that should be the head
4189 res = m_txBuffer->NextSeg(&seq, &seqHigh, false);
4190 if (!res)
4191 {
4192 // We have already retransmitted the head. However, we still received
4193 // three dupacks, or the RTO expired, but no data to transmit.
4194 // Therefore, re-send again the head.
4195 seq = m_txBuffer->HeadSequence();
4196 maxSizeToSend = m_tcb->m_segmentSize;
4197 }
4198 else
4199 {
4200 // NextSeg() may constrain the segment size when res is true
4201 maxSizeToSend = static_cast<uint32_t>(seqHigh - seq);
4202 }
4203 NS_ASSERT(m_sackEnabled || seq == m_txBuffer->HeadSequence());
4204
4205 NS_LOG_INFO("Retransmitting " << seq);
4206 // Update the trace and retransmit the segment
4207 m_tcb->m_nextTxSequence = seq;
4208 uint32_t sz = SendDataPacket(m_tcb->m_nextTxSequence, maxSizeToSend, true);
4209
4210 NS_ASSERT(sz > 0);
4211}
4212
4213void
4215{
4216 m_retxEvent.Cancel();
4217 m_persistEvent.Cancel();
4218 m_delAckEvent.Cancel();
4219 m_lastAckEvent.Cancel();
4220 m_timewaitEvent.Cancel();
4221 m_sendPendingDataEvent.Cancel();
4222 m_pacingTimer.Cancel();
4223}
4224
4225/* Move TCP to Time_Wait state and schedule a transition to Closed state */
4226void
4228{
4229 NS_LOG_DEBUG(TcpStateName[m_state] << " -> TIME_WAIT");
4232 if (!m_closeNotified)
4233 {
4234 // Technically the connection is not fully closed, but we notify now
4235 // because an implementation (real socket) would behave as if closed.
4236 // Notify normal close when entering TIME_WAIT or leaving LAST_ACK.
4238 m_closeNotified = true;
4239 }
4240 // Move from TIME_WAIT to CLOSED after 2*MSL. Max segment lifetime is 2 min
4241 // according to RFC793, p.28
4243}
4244
4245/* Below are the attribute get/set functions */
4246
4247void
4249{
4250 NS_LOG_FUNCTION(this << size);
4251 m_txBuffer->SetMaxBufferSize(size);
4252}
4253
4256{
4257 return m_txBuffer->MaxBufferSize();
4258}
4259
4262{
4263 return m_sndFack;
4264}
4265
4266bool
4268{
4269 return m_fackEnabled;
4270}
4271
4272void
4274{
4275 NS_LOG_FUNCTION(this << size);
4276 uint32_t oldSize = GetRcvBufSize();
4277
4278 m_tcb->m_rxBuffer->SetMaxBufferSize(size);
4279
4280 /* The size has (manually) increased. Actively inform the other end to prevent
4281 * stale zero-window states.
4282 */
4283 if (oldSize < size && m_connected)
4284 {
4285 if (m_tcb->m_ecnState == TcpSocketState::ECN_CE_RCVD ||
4287 {
4289 NS_LOG_DEBUG(TcpSocketState::EcnStateName[m_tcb->m_ecnState] << " -> ECN_SENDING_ECE");
4291 }
4292 else
4293 {
4295 }
4296 }
4297}
4298
4301{
4302 return m_tcb->m_rxBuffer->MaxBufferSize();
4303}
4304
4305void
4307{
4308 NS_LOG_FUNCTION(this << size);
4309 m_tcb->m_segmentSize = size;
4310 m_txBuffer->SetSegmentSize(size);
4311
4312 NS_ABORT_MSG_UNLESS(m_state == CLOSED, "Cannot change segment size dynamically.");
4313}
4314
4317{
4318 return m_tcb->m_segmentSize;
4319}
4320
4321void
4327
4328Time
4330{
4331 return m_cnTimeout;
4332}
4333
4334void
4336{
4337 NS_LOG_FUNCTION(this << count);
4338 m_synRetries = count;
4339}
4340
4343{
4344 return m_synRetries;
4345}
4346
4347void
4349{
4350 NS_LOG_FUNCTION(this << retries);
4351 m_dataRetries = retries;
4352}
4353
4356{
4357 NS_LOG_FUNCTION(this);
4358 return m_dataRetries;
4359}
4360
4361void
4367
4368Time
4370{
4371 return m_delAckTimeout;
4372}
4373
4374void
4376{
4377 NS_LOG_FUNCTION(this << count);
4378 m_delAckMaxCount = count;
4379}
4380
4386
4387void
4389{
4390 NS_LOG_FUNCTION(this << noDelay);
4391 m_noDelay = noDelay;
4392}
4393
4394bool
4396{
4397 return m_noDelay;
4398}
4399
4400void
4406
4407Time
4412
4413bool
4415{
4416 // Broadcast is not implemented. Return true only if allowBroadcast==false
4417 return (!allowBroadcast);
4418}
4419
4420bool
4422{
4423 return false;
4424}
4425
4426void
4428{
4429 NS_LOG_FUNCTION(this << header);
4430
4432 {
4433 AddOptionTimestamp(header);
4434 }
4435}
4436
4437void
4439{
4440 NS_LOG_FUNCTION(this << option);
4441
4443
4444 // In naming, we do the contrary of RFC 1323. The received scaling factor
4445 // is Rcv.Wind.Scale (and not Snd.Wind.Scale)
4446 m_sndWindShift = ws->GetScale();
4447
4448 if (m_sndWindShift > 14)
4449 {
4450 NS_LOG_WARN("Possible error; m_sndWindShift exceeds 14: " << m_sndWindShift);
4451 m_sndWindShift = 14;
4452 }
4453
4454 NS_LOG_INFO(m_node->GetId() << " Received a scale factor of "
4455 << static_cast<int>(m_sndWindShift));
4456}
4457
4458uint8_t
4460{
4461 NS_LOG_FUNCTION(this);
4462 uint32_t maxSpace = m_tcb->m_rxBuffer->MaxBufferSize();
4463 uint8_t scale = 0;
4464
4465 while (maxSpace > m_maxWinSize)
4466 {
4467 maxSpace = maxSpace >> 1;
4468 ++scale;
4469 }
4470
4471 if (scale > 14)
4472 {
4473 NS_LOG_WARN("Possible error; scale exceeds 14: " << scale);
4474 scale = 14;
4475 }
4476
4477 NS_LOG_INFO("Node " << m_node->GetId() << " calculated wscale factor of "
4478 << static_cast<int>(scale) << " for buffer size "
4479 << m_tcb->m_rxBuffer->MaxBufferSize());
4480 return scale;
4481}
4482
4483void
4485{
4486 NS_LOG_FUNCTION(this << header);
4487 NS_ASSERT(header.GetFlags() & TcpHeader::SYN);
4488
4490
4491 // In naming, we do the contrary of RFC 1323. The sended scaling factor
4492 // is Snd.Wind.Scale (and not Rcv.Wind.Scale)
4493
4495 option->SetScale(m_rcvWindShift);
4496
4497 header.AppendOption(option);
4498
4499 NS_LOG_INFO(m_node->GetId() << " Send a scaling factor of "
4500 << static_cast<int>(m_rcvWindShift));
4501}
4502
4505{
4506 NS_LOG_FUNCTION(this << option);
4507
4509
4510 // Update m_sndFack with the highest sequence number acknowledged from the SACK blocks
4511 if (m_fackEnabled)
4512 {
4513 for (const auto& [leftEdge, rightEdge] : s->GetSackList())
4514 {
4515 if (rightEdge.GetValue() > m_sndFack)
4516 {
4517 NS_LOG_INFO(" m_sndFack updated from " << m_sndFack << " to "
4518 << rightEdge.GetValue());
4519 m_sndFack = rightEdge.GetValue();
4520 }
4521 }
4522 }
4523
4524 return m_txBuffer->Update(s->GetSackList(), MakeCallback(&TcpRateOps::SkbDelivered, m_rateOps));
4525}
4526
4527void
4529{
4530 NS_LOG_FUNCTION(this << option);
4531
4533
4534 NS_ASSERT(m_sackEnabled == true);
4535 NS_LOG_INFO(m_node->GetId() << " Received a SACK_PERMITTED option " << s);
4536}
4537
4538void
4540{
4541 NS_LOG_FUNCTION(this << header);
4542 NS_ASSERT(header.GetFlags() & TcpHeader::SYN);
4543
4545 header.AppendOption(option);
4546 NS_LOG_INFO(m_node->GetId() << " Add option SACK-PERMITTED");
4547}
4548
4549void
4551{
4552 NS_LOG_FUNCTION(this << header);
4553
4554 // Calculate the number of SACK blocks allowed in this packet
4555 uint8_t optionLenAvail = header.GetMaxOptionLength() - header.GetOptionLength();
4556 uint8_t allowedSackBlocks = (optionLenAvail - 2) / 8;
4557
4558 TcpOptionSack::SackList sackList = m_tcb->m_rxBuffer->GetSackList();
4559 if (allowedSackBlocks == 0 || sackList.empty())
4560 {
4561 NS_LOG_LOGIC("No space available or sack list empty, not adding sack blocks");
4562 return;
4563 }
4564
4565 // Append the allowed number of SACK blocks
4567
4568 for (auto i = sackList.begin(); allowedSackBlocks > 0 && i != sackList.end(); ++i)
4569 {
4570 option->AddSackBlock(*i);
4571 allowedSackBlocks--;
4572 }
4573
4574 header.AppendOption(option);
4575 NS_LOG_INFO(m_node->GetId() << " Add option SACK " << *option);
4576}
4577
4578void
4580 const SequenceNumber32& seq)
4581{
4582 NS_LOG_FUNCTION(this << option);
4583
4585
4586 // This is valid only when no overflow occurs. It happens
4587 // when a connection last longer than 50 days.
4588 if (m_tcb->m_rcvTimestampValue > ts->GetTimestamp())
4589 {
4590 // Do not save a smaller timestamp (probably there is reordering)
4591 return;
4592 }
4593
4594 m_tcb->m_rcvTimestampValue = ts->GetTimestamp();
4595 m_tcb->m_rcvTimestampEchoReply = ts->GetEcho();
4596
4597 if (seq == m_tcb->m_rxBuffer->NextRxSequence() && seq <= m_highTxAck)
4598 {
4599 m_timestampToEcho = ts->GetTimestamp();
4600 }
4601
4602 NS_LOG_INFO(m_node->GetId() << " Got timestamp=" << m_timestampToEcho
4603 << " and Echo=" << ts->GetEcho());
4604}
4605
4606void
4608{
4609 NS_LOG_FUNCTION(this << header);
4610
4612
4613 option->SetTimestamp(TcpOptionTS::NowToTsValue());
4614 option->SetEcho(m_timestampToEcho);
4615
4616 header.AppendOption(option);
4617 NS_LOG_INFO(m_node->GetId() << " Add option TS, ts=" << option->GetTimestamp()
4618 << " echo=" << m_timestampToEcho);
4619}
4620
4621void
4623{
4624 NS_LOG_FUNCTION(this << header);
4625 // If the connection is not established, the window size is always
4626 // updated
4627 uint32_t receivedWindow = header.GetWindowSize();
4628 receivedWindow <<= m_sndWindShift;
4629 NS_LOG_INFO("Received (scaled) window is " << receivedWindow << " bytes");
4630 if (m_state < ESTABLISHED)
4631 {
4632 m_rWnd = receivedWindow;
4633 NS_LOG_LOGIC("State less than ESTABLISHED; updating rWnd to " << m_rWnd);
4634 return;
4635 }
4636
4637 // Test for conditions that allow updating of the window
4638 // 1) segment contains new data (advancing the right edge of the receive
4639 // buffer),
4640 // 2) segment does not contain new data but the segment acks new data
4641 // (highest sequence number acked advances), or
4642 // 3) the advertised window is larger than the current send window
4643 bool update = false;
4644 if (header.GetAckNumber() == m_highRxAckMark && receivedWindow > m_rWnd)
4645 {
4646 // right edge of the send window is increased (window update)
4647 update = true;
4648 }
4649 if (header.GetAckNumber() > m_highRxAckMark)
4650 {
4651 m_highRxAckMark = header.GetAckNumber();
4652 update = true;
4653 }
4654 if (header.GetSequenceNumber() > m_highRxMark)
4655 {
4657 update = true;
4658 }
4659 if (update)
4660 {
4661 m_rWnd = receivedWindow;
4662 NS_LOG_LOGIC("updating rWnd to " << m_rWnd);
4663 }
4664}
4665
4666void
4668{
4669 NS_LOG_FUNCTION(this << minRto);
4670 m_minRto = minRto;
4671}
4672
4673Time
4675{
4676 return m_minRto;
4677}
4678
4679void
4681{
4682 NS_LOG_FUNCTION(this << clockGranularity);
4683 m_clockGranularity = clockGranularity;
4684}
4685
4686Time
4691
4694{
4695 return m_txBuffer;
4696}
4697
4700{
4701 return m_tcb->m_rxBuffer;
4702}
4703
4704void
4706{
4707 m_retxThresh = retxThresh;
4708 m_txBuffer->SetDupAckThresh(retxThresh);
4709}
4710
4711void
4713{
4714 m_pacingRateTrace(oldValue, newValue);
4715}
4716
4717void
4719{
4720 m_cWndTrace(oldValue, newValue);
4721}
4722
4723void
4725{
4726 m_cWndInflTrace(oldValue, newValue);
4727}
4728
4729void
4731{
4732 m_ssThTrace(oldValue, newValue);
4733}
4734
4735void
4741
4742void
4744 TcpSocketState::EcnState_t newValue) const
4745{
4746 m_ecnStateTrace(oldValue, newValue);
4747}
4748
4749void
4751
4752{
4753 m_nextTxSequenceTrace(oldValue, newValue);
4754}
4755
4756void
4758{
4759 m_highTxMarkTrace(oldValue, newValue);
4760}
4761
4762void
4764{
4765 m_bytesInFlightTrace(oldValue, newValue);
4766}
4767
4768void
4770{
4771 m_fackAwndTrace(oldValue, newValue);
4772}
4773
4774void
4775TcpSocketBase::UpdateRtt(Time oldValue, Time newValue) const
4776{
4777 m_srttTrace(oldValue, newValue);
4778}
4779
4780void
4781TcpSocketBase::UpdateLastRtt(Time oldValue, Time newValue) const
4782{
4783 m_lastRttTrace(oldValue, newValue);
4784}
4785
4786void
4794
4795void
4797{
4798 NS_LOG_FUNCTION(this << recovery);
4799 m_recoveryOps = recovery;
4800}
4801
4804{
4805 return CopyObject<TcpSocketBase>(this);
4806}
4807
4810{
4811 if (a > b)
4812 {
4813 return a - b;
4814 }
4815
4816 return 0;
4817}
4818
4819void
4821{
4822 NS_LOG_FUNCTION(this);
4823 NS_LOG_INFO("Performing Pacing");
4825}
4826
4827bool
4829{
4830 if (!m_tcb->m_pacing)
4831 {
4832 return false;
4833 }
4834 else
4835 {
4836 if (m_tcb->m_paceInitialWindow)
4837 {
4838 return true;
4839 }
4840 SequenceNumber32 highTxMark = m_tcb->m_highTxMark; // cast traced value
4841 if (highTxMark.GetValue() > (GetInitialCwnd() * m_tcb->m_segmentSize))
4842 {
4843 return true;
4844 }
4845 }
4846 return false;
4847}
4848
4849void
4851{
4852 NS_LOG_FUNCTION(this << m_tcb);
4853
4854 // According to Linux, set base pacing rate to (cwnd * mss) / srtt
4855 //
4856 // In (early) slow start, multiply base by the slow start factor.
4857 // In late slow start and congestion avoidance, multiply base by
4858 // the congestion avoidance factor.
4859 // Comment from Linux code regarding early/late slow start:
4860 // Normal Slow Start condition is (tp->snd_cwnd < tp->snd_ssthresh)
4861 // If snd_cwnd >= (tp->snd_ssthresh / 2), we are approaching
4862 // end of slow start and should slow down.
4863
4864 // Similar to Linux, do not update pacing rate here if the
4865 // congestion control implements TcpCongestionOps::CongControl ()
4866 if (m_congestionControl->HasCongControl() || !m_tcb->m_pacing)
4867 {
4868 return;
4869 }
4870
4871 double factor;
4872 if (m_tcb->m_cWnd < m_tcb->m_ssThresh / 2)
4873 {
4874 NS_LOG_DEBUG("Pacing according to slow start factor; " << m_tcb->m_cWnd << " "
4875 << m_tcb->m_ssThresh);
4876 factor = static_cast<double>(m_tcb->m_pacingSsRatio) / 100;
4877 }
4878 else
4879 {
4880 NS_LOG_DEBUG("Pacing according to congestion avoidance factor; " << m_tcb->m_cWnd << " "
4881 << m_tcb->m_ssThresh);
4882 factor = static_cast<double>(m_tcb->m_pacingCaRatio) / 100;
4883 }
4884 Time srtt = m_tcb->m_srtt.Get(); // Get underlying Time value
4885 NS_LOG_DEBUG("Smoothed RTT is " << srtt.GetSeconds());
4886
4887 // Multiply by 8 to convert from bytes per second to bits per second
4888 DataRate pacingRate((std::max(m_tcb->m_cWnd, m_tcb->m_bytesInFlight) * 8 * factor) /
4889 srtt.GetSeconds());
4890 if (pacingRate < m_tcb->m_maxPacingRate)
4891 {
4892 NS_LOG_DEBUG("Pacing rate updated to: " << pacingRate);
4893 m_tcb->m_pacingRate = pacingRate;
4894 }
4895 else
4896 {
4897 NS_LOG_DEBUG("Pacing capped by max pacing rate: " << m_tcb->m_maxPacingRate);
4898 m_tcb->m_pacingRate = m_tcb->m_maxPacingRate;
4899 }
4900}
4901
4902void
4904{
4905 NS_LOG_FUNCTION(this << pacing);
4906 m_tcb->m_pacing = pacing;
4907}
4908
4909void
4911{
4912 NS_LOG_FUNCTION(this << paceWindow);
4913 m_tcb->m_paceInitialWindow = paceWindow;
4914}
4915
4916bool
4918{
4919 NS_LOG_FUNCTION(this << packetType);
4920 NS_ASSERT_MSG(packetType != TcpPacketType_t::INVALID, "Invalid TCP packet type");
4921 if (m_tcb->m_ecnState == TcpSocketState::ECN_DISABLED)
4922 {
4923 return false;
4924 }
4925
4926 NS_ABORT_MSG_IF(!ECN_RESTRICTION_MAP.contains(std::make_pair(packetType, m_tcb->m_ecnMode)),
4927 "Invalid packetType and ecnMode");
4928
4929 return ECN_RESTRICTION_MAP.at(std::make_pair(packetType, m_tcb->m_ecnMode));
4930}
4931
4932void
4934{
4935 NS_LOG_FUNCTION(this << useEcn);
4936 m_tcb->m_useEcn = useEcn;
4937}
4938
4939void
4941{
4942 NS_LOG_FUNCTION(this << useAbe);
4943 if (m_tcb->m_useEcn == TcpSocketState::Off && useAbe)
4944 {
4945 NS_LOG_INFO("Enabling ECN along with ABE");
4946 m_tcb->m_useEcn = TcpSocketState::On;
4947 }
4948 m_tcb->m_abeEnabled = useAbe;
4949}
4950
4951bool
4953{
4954 return m_tcb->m_abeEnabled;
4955}
4956
4959{
4960 return m_rWnd.Get();
4961}
4962
4965{
4966 return m_highRxAckMark.Get();
4967}
4968
4969// RttHistory methods
4971 : seq(s),
4972 count(c),
4973 time(t),
4974 retx(false)
4975{
4976}
4977
4979 : seq(h.seq),
4980 count(h.count),
4981 time(h.time),
4982 retx(h.retx)
4983{
4984}
4985
4986} // namespace ns3
#define Max(a, b)
#define Min(a, b)
a polymophic address class
Definition address.h:114
AttributeValue implementation for Boolean.
Definition boolean.h:26
Callback template class.
Definition callback.h:428
AttributeValue implementation for Callback.
Definition callback.h:794
Class for representing data rates.
Definition data-rate.h:78
This class can be used to hold variables of floating point type such as 'double' or 'float'.
Definition double.h:31
Hold variables of type enum.
Definition enum.h:52
An Inet6 address class.
static Inet6SocketAddress ConvertFrom(const Address &addr)
Convert the address to a InetSocketAddress.
uint16_t GetPort() const
Get the port.
static bool IsMatchingType(const Address &addr)
If the address match.
Ipv6Address GetIpv6() const
Get the IPv6 address.
an Inet address class
static bool IsMatchingType(const Address &address)
Ipv4Address GetIpv4() const
static InetSocketAddress ConvertFrom(const Address &address)
Returns an InetSocketAddress which corresponds to the input Address.
Ipv4 addresses are stored in host order in this class.
static Ipv4Address GetZero()
static Ipv4Address GetAny()
Packet header for IPv4.
Definition ipv4-header.h:23
void SetDestination(Ipv4Address destination)
Ipv4Address GetSource() const
EcnType GetEcn() const
Ipv4Address GetDestination() const
Access to the IPv4 forwarding table, interfaces, and configuration.
Definition ipv4.h:69
Describes an IPv6 address.
static Ipv6Address GetAny()
Get the "any" (::) Ipv6Address.
bool IsIpv4MappedAddress() const
If the address is an IPv4-mapped address.
Ipv4Address GetIpv4MappedAddress() const
Return the Ipv4 address.
Packet header for IPv6.
Definition ipv6-header.h:24
void SetDestination(Ipv6Address dst)
Set the "Destination address" field.
Ipv6Address GetDestination() const
Get the "Destination address" field.
EcnType GetEcn() const
Ipv6Address GetSource() const
Get the "Source address" field.
IPv6 layer implementation.
AttributeValue implementation for Pointer.
Definition pointer.h:37
Smart pointer class similar to boost::intrusive_ptr.
Definition ptr.h:70
Helper class to store RTT measurements.
uint32_t count
Number of bytes sent.
RttHistory(SequenceNumber32 s, uint32_t c, Time t)
Constructor - builds an RttHistory with the given parameters.
bool retx
True if this has been retransmitted.
Time time
Time this one was sent.
SequenceNumber32 seq
First sequence number in packet sent.
NUMERIC_TYPE GetValue() const
Extracts the numeric value of the sequence number.
static EventId Schedule(const Time &delay, FUNC f, Ts &&... args)
Schedule an event to expire after delay.
Definition simulator.h:580
static Time Now()
Return the current simulation virtual time.
Definition simulator.cc:191
static EventId ScheduleNow(FUNC f, Ts &&... args)
Schedule an event to expire Now.
Definition simulator.h:614
static Time GetDelayLeft(const EventId &id)
Get the remaining time until this event will execute.
Definition simulator.cc:200
Ptr< NetDevice > GetBoundNetDevice()
Returns socket's bound NetDevice, if any.
Definition socket.cc:336
Ptr< Packet > Recv()
Read a single packet from the socket.
Definition socket.cc:163
void SetConnectCallback(Callback< void, Ptr< Socket > > connectionSucceeded, Callback< void, Ptr< Socket > > connectionFailed)
Specify callbacks to allow the caller to determine if the connection succeeds of fails.
Definition socket.cc:76
bool IsManualIpTtl() const
Checks if the socket has a specific IPv4 TTL set.
Definition socket.cc:363
void NotifySend(uint32_t spaceAvailable)
Notify through the callback (if set) that some data have been sent.
Definition socket.cc:281
void NotifyNewConnectionCreated(Ptr< Socket > socket, const Address &from)
Notify through the callback (if set) that a new connection has been created.
Definition socket.cc:261
virtual uint8_t GetIpTtl() const
Query the value of IP Time to Live field of this socket.
Definition socket.cc:506
bool NotifyConnectionRequest(const Address &from)
Notify through the callback (if set) that an incoming connection is being requested by a remote host.
Definition socket.cc:243
uint8_t GetIpTos() const
Query the value of IP Type of Service of this socket.
Definition socket.cc:439
SocketType
Enumeration of the possible socket types.
Definition socket.h:96
@ NS3_SOCK_STREAM
Definition socket.h:97
void SetDataSentCallback(Callback< void, Ptr< Socket >, uint32_t > dataSent)
Notify application when a packet has been sent from transport protocol (non-standard socket call).
Definition socket.cc:103
void SetSendCallback(Callback< void, Ptr< Socket >, uint32_t > sendCb)
Notify application when space in transmit buffer is added.
Definition socket.cc:110
void NotifyErrorClose()
Notify through the callback (if set) that the connection has been closed due to an error.
Definition socket.cc:233
void NotifyDataRecv()
Notify through the callback (if set) that some data have been received.
Definition socket.cc:291
Ptr< NetDevice > m_boundnetdevice
the device this socket is bound to (might be null).
Definition socket.h:1071
virtual void BindToNetDevice(Ptr< NetDevice > netdevice)
Bind a socket to specific device.
Definition socket.cc:316
void NotifyNormalClose()
Notify through the callback (if set) that the connection has been closed.
Definition socket.cc:223
virtual uint8_t GetIpv6HopLimit() const
Query the value of IP Hop Limit field of this socket.
Definition socket.cc:531
void SetRecvCallback(Callback< void, Ptr< Socket > > receivedData)
Notify application when new data is available to be read.
Definition socket.cc:117
SocketErrno
Enumeration of the possible errors returned by a socket.
Definition socket.h:73
@ ERROR_SHUTDOWN
Definition socket.h:79
@ ERROR_INVAL
Definition socket.h:82
@ ERROR_ADDRINUSE
Definition socket.h:87
@ ERROR_ADDRNOTAVAIL
Definition socket.h:86
@ ERROR_NOTCONN
Definition socket.h:76
@ ERROR_MSGSIZE
Definition socket.h:77
void NotifyDataSent(uint32_t size)
Notify through the callback (if set) that some data have been sent.
Definition socket.cc:271
void NotifyConnectionSucceeded()
Notify through the callback (if set) that the connection has been established.
Definition socket.cc:203
uint8_t GetPriority() const
Query the priority value of this socket.
Definition socket.cc:382
uint8_t GetIpv6Tclass() const
Query the value of IPv6 Traffic Class field of this socket.
Definition socket.cc:481
bool IsManualIpv6HopLimit() const
Checks if the socket has a specific IPv6 Hop Limit set.
Definition socket.cc:369
bool IsManualIpv6Tclass() const
Checks if the socket has a specific IPv6 Tclass set.
Definition socket.cc:357
void NotifyConnectionFailed()
Notify through the callback (if set) that the connection has not been established due to an error.
Definition socket.cc:213
indicates whether the socket has IP_TOS set.
Definition socket.h:1261
void SetTos(uint8_t tos)
Set the tag's TOS.
Definition socket.cc:787
This class implements a tag that carries the socket-specific TTL of a packet to the IP layer.
Definition socket.h:1114
void SetTtl(uint8_t ttl)
Set the tag's TTL.
Definition socket.cc:593
This class implements a tag that carries the socket-specific HOPLIMIT of a packet to the IPv6 layer.
Definition socket.h:1162
void SetHopLimit(uint8_t hopLimit)
Set the tag's Hop Limit.
Definition socket.cc:657
indicates whether the socket has IPV6_TCLASS set.
Definition socket.h:1356
void SetTclass(uint8_t tclass)
Set the tag's Tclass.
Definition socket.cc:899
indicates whether the socket has a priority set.
Definition socket.h:1308
void SetPriority(uint8_t priority)
Set the tag's priority.
Definition socket.cc:843
Header for the Transmission Control Protocol.
Definition tcp-header.h:36
void SetDestinationPort(uint16_t port)
Set the destination port.
Definition tcp-header.cc:59
void SetSequenceNumber(SequenceNumber32 sequenceNumber)
Set the sequence Number.
Definition tcp-header.cc:65
SequenceNumber32 GetSequenceNumber() const
Get the sequence number.
uint8_t GetMaxOptionLength() const
Get maximum option length.
uint16_t GetDestinationPort() const
Get the destination port.
Ptr< const TcpOption > GetOption(uint8_t kind) const
Get the option specified.
void SetFlags(uint8_t flags)
Set flags of the header.
Definition tcp-header.cc:77
void SetWindowSize(uint16_t windowSize)
Set the window size.
Definition tcp-header.cc:83
const TcpOptionList & GetOptionList() const
Get the list of option in this header.
uint16_t GetWindowSize() const
Get the window size.
uint8_t GetOptionLength() const
Get the total length of appended options.
bool AppendOption(Ptr< const TcpOption > option)
Append an option to the TCP header.
static std::string FlagsToString(uint8_t flags, const std::string &delimiter="|")
Converts an integer into a human readable list of Tcp flags.
Definition tcp-header.cc:28
bool HasOption(uint8_t kind) const
Check if the header has the option specified.
uint16_t GetSourcePort() const
Get the source port.
Definition tcp-header.cc:95
void SetSourcePort(uint16_t port)
Set the source port.
Definition tcp-header.cc:53
void SetAckNumber(SequenceNumber32 ackNumber)
Set the ACK number.
Definition tcp-header.cc:71
uint8_t GetFlags() const
Get the flags.
SequenceNumber32 GetAckNumber() const
Get the ACK number.
@ SACKPERMITTED
SACKPERMITTED.
Definition tcp-option.h:49
@ WINSCALE
WINSCALE.
Definition tcp-option.h:48
std::list< SackBlock > SackList
SACK list definition.
static Time ElapsedTimeFromTsValue(uint32_t echoTime)
Estimate the Time elapsed from a TS echo value.
static uint32_t NowToTsValue()
Return an uint32_t value which represent "now".
virtual void SkbDelivered(TcpTxItem *skb)=0
Update the Rate information after an item is received.
A base class for implementation of a stream socket using TCP.
void AddOptionSack(TcpHeader &header)
Add the SACK option to the header.
int GetSockName(Address &address) const override
Get socket address.
Time m_persistTimeout
Time between sending 1-byte probes.
uint16_t m_maxWinSize
Maximum window size to advertise.
uint8_t m_rcvWindShift
Window shift to apply to outgoing segments.
void SetPaceInitialWindow(bool paceWindow)
Enable or disable pacing of the initial window.
int Bind6() override
Allocate a local IPv6 endpoint for this socket.
void TimeWait()
Move from CLOSING or FIN_WAIT_2 to TIME_WAIT state.
Ptr< TcpCongestionOps > m_congestionControl
Congestion control.
void AddSocketTags(const Ptr< Packet > &p, bool isEct) const
Add Tags for the Socket.
Ptr< TcpTxBuffer > GetTxBuffer() const
Get a pointer to the Tx buffer.
int SetupEndpoint()
Configure the endpoint to a local address.
virtual void LastAckTimeout()
Timeout at LAST_ACK, close the connection.
void ProcessEstablished(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon ESTABLISHED state.
Time m_minRto
minimum value of the Retransmit timeout
uint32_t SendPendingData(bool withAck=false)
Send as much pending data as possible according to the Tx window.
TracedValue< uint32_t > m_advWnd
Advertised Window size.
TracedCallback< Ptr< const Packet >, const TcpHeader &, Ptr< const TcpSocketBase > > m_txTrace
Trace of transmitted packets.
SequenceNumber32 m_recover
Previous highest Tx seqnum for fast recovery (set it to initial seq number).
bool m_recoverActive
Whether "m_recover" has been set/activated It is used to avoid comparing with the old m_recover value...
void DoRetransmit()
Retransmit the first segment marked as lost, without considering available window nor pacing.
bool CheckNoEcn(uint8_t tos) const
Checks if TOS has no ECN codepoints.
virtual void SetNode(Ptr< Node > node)
Set the associated node.
int ShutdownRecv() override
uint8_t m_sndWindShift
Window shift to apply to incoming segments.
Ptr< TcpL4Protocol > m_tcp
the associated TCP L4 protocol
Ptr< TcpSocketState > m_tcb
Congestion control information.
bool GetAllowBroadcast() const override
Query whether broadcast datagram transmissions are allowed.
void UpdateSsThresh(uint32_t oldValue, uint32_t newValue) const
Callback function to hook to TcpSocketState slow start threshold.
TracedCallback< Ptr< const Packet >, const TcpHeader &, Ptr< const TcpSocketBase > > m_rxTrace
Trace of received packets.
virtual void SetTcp(Ptr< TcpL4Protocol > tcp)
Set the associated TCP L4 protocol.
void EnterRecovery(uint32_t currentDelivered)
Enter the CA_RECOVERY, and retransmit the head.
Time GetMinRto() const
Get the Minimum RTO.
void ProcessSynSent(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon SYN_SENT.
void ForwardUp(Ptr< Packet > packet, Ipv4Header header, uint16_t port, Ptr< Ipv4Interface > incomingInterface)
Called by the L3 protocol when it received a packet to pass on to TCP.
bool SetAllowBroadcast(bool allowBroadcast) override
Configure whether broadcast datagram transmissions are allowed.
void CancelAllTimers()
Cancel all timer when endpoint is deleted.
bool GetFackEnabled() const
Check whether Forward Acknowledgment (FACK) is enabled.
Time GetDelAckTimeout() const override
Get the time to delay an ACK.
Ptr< TcpRecoveryOps > m_recoveryOps
Recovery Algorithm.
TracedCallback< uint32_t, uint32_t > m_bytesInFlightTrace
Callback pointer for bytesInFlight trace chaining.
uint32_t GetInitialSSThresh() const override
Get the initial Slow Start Threshold.
void NotifyPacingPerformed()
Notify Pacing.
uint32_t m_sndFack
Sequence number of the forward most acknowledgement.
void SetDelAckTimeout(Time timeout) override
Set the time to delay an ACK.
uint32_t m_outstandingRetransBytes
Number of outstanding retransmitted bytes.
void CloseAndNotify()
Peacefully close the socket by notifying the upper layer and deallocate end point.
Ptr< TcpRateOps > m_rateOps
Rate operations.
void PeerClose(Ptr< Packet > p, const TcpHeader &tcpHeader)
Received a FIN from peer, notify rx buffer.
int Close() override
Close a socket.
bool m_shutdownSend
Send no longer allowed.
bool IsPacingEnabled() const
Return true if packets in the current window should be paced.
void ProcessOptionWScale(const Ptr< const TcpOption > option)
Read and parse the Window scale option.
bool m_closeOnEmpty
Close socket upon tx buffer emptied.
virtual void ReTxTimeout()
An RTO event happened.
void AddOptionSackPermitted(TcpHeader &header)
Add the SACK PERMITTED option to the header.
TracedValue< Time > m_rto
Retransmit timeout.
uint32_t GetSndBufSize() const override
Get the send buffer size.
virtual void ReceivedData(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Recv of a data, put into buffer, call L7 to get it if necessary.
EventId m_timewaitEvent
TIME_WAIT expiration event: Move this socket to CLOSED state.
Ptr< TcpTxBuffer > m_txBuffer
Tx buffer.
static TypeId GetTypeId()
Get the type ID.
uint32_t m_dupAckCount
Dupack counter.
void SetRetxThresh(uint32_t retxThresh)
Set the retransmission threshold (dup ack threshold for a fast retransmit).
int Send(Ptr< Packet > p, uint32_t flags) override
Send data (or dummy data) to the remote host.
TracedCallback< SequenceNumber32, SequenceNumber32 > m_nextTxSequenceTrace
Callback pointer for next tx sequence chaining.
void UpdateBytesInFlight(uint32_t oldValue, uint32_t newValue) const
Callback function to hook to TcpSocketState bytes inflight.
EventId m_delAckEvent
Delayed ACK timeout event.
TracedCallback< Time, Time > m_lastRttTrace
Callback pointer for Last RTT trace chaining.
bool GetTcpNoDelay() const override
Check if Nagle's algorithm is enabled or not.
virtual void SetRtt(Ptr< RttEstimator > rtt)
Set the associated RTT estimator.
TracedCallback< uint32_t, uint32_t > m_cWndTrace
Callback pointer for cWnd trace chaining.
void UpdatePacingRateTrace(DataRate oldValue, DataRate newValue) const
Callback function to hook to TcpSocketState pacing rate.
void SetDataRetries(uint32_t retries) override
Set the number of data transmission retries before giving up.
void AddOptions(TcpHeader &tcpHeader)
Add options to TcpHeader.
TracedCallback< TcpSocketState::EcnState_t, TcpSocketState::EcnState_t > m_ecnStateTrace
Callback pointer for ECN state trace chaining.
void SetSynRetries(uint32_t count) override
Set the number of connection retries before giving up.
TracedCallback< uint32_t, uint32_t > m_fackAwndTrace
Callback pointer for fackAwnd trace chaining.
void ProcessWait(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon CLOSE_WAIT, FIN_WAIT_1, FIN_WAIT_2.
SequenceNumber32 m_highTxAck
Highest ack sent.
uint32_t GetTxAvailable() const override
Returns the number of bytes which can be sent in a single call to Send.
bool m_timestampEnabled
Timestamp option enabled.
virtual void PersistTimeout()
Send 1 byte probe to get an updated window size.
TracedValue< TcpStates_t > m_state
TCP state.
int SetupCallback()
Common part of the two Bind(), i.e.
Ptr< RttEstimator > m_rtt
Round trip time estimator.
Timer m_pacingTimer
Pacing Event.
EventId m_retxEvent
Retransmission event.
uint32_t m_bytesAckedNotProcessed
Bytes acked, but not processed.
void AddOptionTimestamp(TcpHeader &header)
Add the timestamp option to the header.
virtual uint32_t BytesInFlight() const
Return total bytes in flight.
uint32_t GetSegSize() const override
Get the segment size.
virtual void ProcessAck(const SequenceNumber32 &ackNumber, bool scoreboardUpdated, uint32_t currentDelivered, const SequenceNumber32 &oldHeadSequence, bool receivedData)
Process a received ack.
int SendTo(Ptr< Packet > p, uint32_t flags, const Address &toAddress) override
Send data to a specified peer.
uint32_t m_dataRetries
Number of data retransmission attempts.
double m_msl
Max segment lifetime.
void ProcessLastAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon LAST_ACK.
bool m_limitedTx
perform limited transmit
virtual uint32_t SendDataPacket(SequenceNumber32 seq, uint32_t maxSize, bool withAck)
Extract at most maxSize bytes from the TxBuffer at sequence seq, add the TCP header,...
TracedCallback< TcpSocketState::TcpCongState_t, TcpSocketState::TcpCongState_t > m_congStateTrace
Callback pointer for congestion state trace chaining.
void ProcessSynRcvd(Ptr< Packet > packet, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Received a packet upon SYN_RCVD.
virtual void ReceivedAck(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received an ACK packet.
SocketType GetSocketType() const override
int ShutdownSend() override
uint32_t GetSndFack() const
Get the current FACK sequence number.
TracedValue< SequenceNumber32 > m_ecnCWRSeq
Sequence number of the last sent CWR.
Time GetPersistTimeout() const override
Get the timeout for persistent connection.
void UpdateCwnd(uint32_t oldValue, uint32_t newValue) const
Callback function to hook to TcpSocketState congestion window.
void UpdateLastRtt(Time oldValue, Time newValue) const
Callback function to hook to TcpSocketState lastRtt.
TracedCallback< Ptr< const Packet >, const TcpHeader &, const Address &, const Address &, Ptr< const TcpSocketBase > > m_retransmissionTrace
Trace of retransmitted packets.
uint32_t m_delAckCount
Delayed ACK counter.
Ipv4EndPoint * m_endPoint
the IPv4 endpoint
TcpPacketType_t
Tcp Packet Types.
static uint32_t SafeSubtraction(uint32_t a, uint32_t b)
Performs a safe subtraction between a and b (a-b).
virtual void DelAckTimeout()
Action upon delay ACK timeout, i.e.
Ptr< Packet > RecvFrom(uint32_t maxSize, uint32_t flags, Address &fromAddress) override
Read a single packet from the socket and retrieve the sender address.
Time m_cnTimeout
Timeout for connection retry.
Time GetClockGranularity() const
Get the Clock Granularity (used in RTO calcs).
bool m_winScalingEnabled
Window Scale option enabled (RFC 7323).
void UpdateEcnState(TcpSocketState::EcnState_t oldValue, TcpSocketState::EcnState_t newValue) const
Callback function to hook to EcnState state.
EventId m_sendPendingDataEvent
micro-delay event to send pending data
uint32_t m_delAckMaxCount
Number of packet to fire an ACK before delay timeout.
uint8_t CalculateWScale() const
Calculate window scale value based on receive buffer space.
virtual void NewAck(const SequenceNumber32 &seq, bool resetRTO)
Update buffers w.r.t.
bool m_closeNotified
Told app to close socket.
int Listen() override
Listen for incoming connections.
void Destroy6()
Kill this socket by zeroing its attributes (IPv6).
bool IsEct(TcpPacketType_t packetType) const
Checks if a TCP packet should be ECN-capable (ECT) according to the TcpPacketType and ECN mode.
TracedValue< SequenceNumber32 > m_ecnCESeq
Sequence number of the last received Congestion Experienced.
void SetClockGranularity(Time clockGranularity)
Sets the Clock Granularity (used in RTO calcs).
bool IsValidTcpSegment(const SequenceNumber32 seq, const uint32_t tcpHeaderSize, const uint32_t tcpPayloadSize)
Checks whether the given TCP segment is valid or not.
Time m_clockGranularity
Clock Granularity used in RTO calcs.
void DupAck(uint32_t currentDelivered)
Dupack management.
bool m_shutdownRecv
Receive no longer allowed.
void UpdateCongState(TcpSocketState::TcpCongState_t oldValue, TcpSocketState::TcpCongState_t newValue) const
Callback function to hook to TcpSocketState congestion state.
virtual uint32_t Window() const
Return the max possible number of unacked bytes.
Callback< void, Ipv6Address, uint8_t, uint8_t, uint8_t, uint32_t > m_icmpCallback6
ICMPv6 callback.
std::deque< RttHistory > m_history
List of sent packet.
void ProcessOptionSackPermitted(const Ptr< const TcpOption > option)
Read the SACK PERMITTED option.
int Bind() override
Allocate a local IPv4 endpoint for this socket.
virtual uint32_t AvailableWindow() const
Return unfilled portion of window.
TracedValue< SequenceNumber32 > m_highRxMark
Highest seqno received.
void ReadOptions(const TcpHeader &tcpHeader, uint32_t *bytesSacked)
Read TCP options before Ack processing.
virtual uint16_t AdvertisedWindowSize(bool scale=true) const
The amount of Rx window announced to the peer.
void ForwardUp6(Ptr< Packet > packet, Ipv6Header header, uint16_t port, Ptr< Ipv6Interface > incomingInterface)
Called by the L3 protocol when it received a packet to pass on to TCP.
void SetUseAbe(bool useAbe)
Set ABE mode of use on the socket.
bool m_connected
Connection established.
TracedValue< SequenceNumber32 > m_highRxAckMark
Highest ack received.
void AddOptionWScale(TcpHeader &header)
Add the window scale option to the header.
virtual void SendEmptyPacket(uint8_t flags)
Send a empty packet that carries a flag, e.g., ACK.
void UpdateWindowSize(const TcpHeader &header)
Update the receiver window (RWND) based on the value of the window field in the header.
uint32_t GetRxAvailable() const override
Return number of bytes which can be returned from one or multiple calls to Recv.
bool m_useAbe
ABE mode It will override the UseEcn attribute if it is 'Off' and set it to 'On', but will leave it u...
uint32_t GetDataRetries() const override
Get the number of data transmission retries before giving up.
int SetupEndpoint6()
Configure the endpoint v6 to a local address.
uint32_t GetRetxThresh() const
Get the retransmission threshold (dup ack threshold for a fast retransmit).
void DeallocateEndPoint()
Deallocate m_endPoint and m_endPoint6.
void Destroy()
Kill this socket by zeroing its attributes (IPv4).
void UpdateHighTxMark(SequenceNumber32 oldValue, SequenceNumber32 newValue) const
Callback function to hook to TcpSocketState high tx mark.
TcpSocketBase()
Create an unbound TCP socket.
void SetInitialSSThresh(uint32_t threshold) override
Set the initial Slow Start Threshold.
TracedCallback< DataRate, DataRate > m_pacingRateTrace
Callback pointer for pacing rate trace chaining.
uint32_t m_timestampToEcho
Timestamp to echo.
Ipv6EndPoint * m_endPoint6
the IPv6 endpoint
void SetSndBufSize(uint32_t size) override
Set the send buffer size.
virtual Ptr< TcpSocketBase > Fork()
Call CopyObject<> to clone me.
TracedCallback< uint32_t, uint32_t > m_ssThTrace
Callback pointer for ssTh trace chaining.
SocketErrno m_errno
Socket error code.
SocketErrno GetErrno() const override
Get last error number.
virtual void CompleteFork(Ptr< Packet > p, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Complete a connection by forking the socket.
void ProcessClosing(Ptr< Packet > packet, const TcpHeader &tcpHeader)
Received a packet upon CLOSING.
TracedCallback< SequenceNumber32, SequenceNumber32 > m_highTxMarkTrace
Callback pointer for high tx mark chaining.
int Connect(const Address &address) override
Initiate a connection to a remote host.
Ptr< Node > m_node
the associated node
void SetSegSize(uint32_t size) override
Set the segment size.
bool GetUseAbe() const
Get ABE mode of use on the socket.
uint32_t m_synRetries
Number of connection attempts.
void SetConnTimeout(Time timeout) override
Set the connection timeout.
void SetDelAckMaxCount(uint32_t count) override
Set the number of packet to fire an ACK before delay timeout.
EventId m_lastAckEvent
Last ACK timeout event.
bool IsTcpOptionEnabled(uint8_t kind) const
Return true if the specified option is enabled.
void UpdatePacingRate()
Dynamically update the pacing rate.
EventId m_persistEvent
Persist event: Send 1 byte to probe for a non-zero Rx window.
void SetPacingStatus(bool pacing)
Enable or disable pacing.
void UpdateRtt(Time oldValue, Time newValue) const
Callback function to hook to TcpSocketState rtt.
void SetCongestionControlAlgorithm(Ptr< TcpCongestionOps > algo)
Install a congestion control algorithm on this socket.
int GetPeerName(Address &address) const override
Get the peer address of a connected socket.
virtual uint32_t UnAckDataCount() const
Return count of number of unacked bytes.
uint32_t m_dataRetrCount
Count of remaining data retransmission attempts.
void UpdateCwndInfl(uint32_t oldValue, uint32_t newValue) const
Callback function to hook to TcpSocketState inflated congestion window.
Ptr< TcpRxBuffer > GetRxBuffer() const
Get a pointer to the Rx buffer.
void SetPersistTimeout(Time timeout) override
Set the timeout for persistent connection.
void ConnectionSucceeded()
Schedule-friendly wrapper for Socket::NotifyConnectionSucceeded().
bool m_noDelay
Set to true to disable Nagle's algorithm.
uint32_t GetDelAckMaxCount() const override
Get the number of packet to fire an ACK before delay timeout.
void ForwardIcmp(Ipv4Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo)
Called by the L3 protocol when it received an ICMP packet to pass on to TCP.
void ForwardIcmp6(Ipv6Address icmpSource, uint8_t icmpTtl, uint8_t icmpType, uint8_t icmpCode, uint32_t icmpInfo)
Called by the L3 protocol when it received an ICMPv6 packet to pass on to TCP.
virtual void DoForwardUp(Ptr< Packet > packet, const Address &fromAddress, const Address &toAddress)
Called by TcpSocketBase::ForwardUp{,6}().
bool m_isFirstPartialAck
First partial ACK during RECOVERY.
uint8_t MarkEcnCodePoint(const uint8_t tos, const TcpSocketState::EcnCodePoint_t codePoint) const
mark ECN code point
Time m_delAckTimeout
Time to delay an ACK.
Callback< void, Ipv4Address, uint8_t, uint8_t, uint8_t, uint32_t > m_icmpCallback
ICMP callback.
TracedCallback< Time, Time > m_srttTrace
Callback pointer for RTT trace chaining.
void SetInitialCwnd(uint32_t cwnd) override
Set the initial Congestion Window.
void SetUseEcn(TcpSocketState::UseEcn_t useEcn)
Set ECN mode of use on the socket.
void ProcessListen(Ptr< Packet > packet, const TcpHeader &tcpHeader, const Address &fromAddress, const Address &toAddress)
Received a packet upon LISTEN state.
uint32_t m_synCount
Count of remaining connection retries.
bool m_fackEnabled
flag for enabling FACK
int DoConnect()
Perform the real connection tasks: Send SYN if allowed, RST if invalid.
virtual Time CalculateRttSample(const TcpHeader &tcpHeader, const RttHistory &rttHistory)
Calculate RTT sample for the ACKed packet.
uint32_t GetSynRetries() const override
Get the number of connection retries before giving up.
void DoPeerClose()
FIN is in sequence, notify app and respond with a FIN.
void NotifyConstructionCompleted() override
Notifier called once the ObjectBase is fully constructed.
void SendRST()
Send reset and tear down this socket.
bool OutOfRange(SequenceNumber32 head, SequenceNumber32 tail) const
Check if a sequence number range is within the rx window.
TracedValue< SequenceNumber32 > m_ecnEchoSeq
Sequence number of the last received ECN Echo.
uint32_t m_retxThresh
Fast Retransmit threshold.
void UpdateFackAwnd(uint32_t oldValue, uint32_t newValue) const
Callback function to hook to TcpSocketState awnd(FACK's inflight).
uint32_t GetRWnd() const
Get the current value of the receiver's offered window (RCV.WND).
SequenceNumber32 GetHighRxAck() const
Get the current value of the receiver's highest (in-sequence) sequence number acked.
void BindToNetDevice(Ptr< NetDevice > netdevice) override
Bind a socket to specific device.
void EnterCwr(uint32_t currentDelivered)
Enter CA_CWR state upon receipt of an ECN Echo.
virtual void EstimateRtt(const TcpHeader &tcpHeader)
Take into account the packet for RTT estimation.
uint32_t GetInitialCwnd() const override
Get the initial Congestion Window.
TracedValue< uint32_t > m_rWnd
Receiver window (RCV.WND in RFC793).
void ProcessOptionTimestamp(const Ptr< const TcpOption > option, const SequenceNumber32 &seq)
Process the timestamp option from other side.
void SetRcvBufSize(uint32_t size) override
Set the receive buffer size.
void SetTcpNoDelay(bool noDelay) override
Enable/Disable Nagle's algorithm.
virtual void UpdateRttHistory(const SequenceNumber32 &seq, uint32_t sz, bool isRetransmission)
Update the RTT history, when we send TCP segments.
bool m_sackEnabled
RFC SACK option enabled.
void UpdateNextTxSequence(SequenceNumber32 oldValue, SequenceNumber32 newValue) const
Callback function to hook to TcpSocketState next tx sequence.
void SetMinRto(Time minRto)
Sets the Minimum RTO.
Time GetConnTimeout() const override
Get the connection timeout.
Ptr< Node > GetNode() const override
Return the node this socket is associated with.
uint32_t ProcessOptionSack(const Ptr< const TcpOption > option)
Read the SACK option.
void SetRecoveryAlgorithm(Ptr< TcpRecoveryOps > recovery)
Install a recovery algorithm on this socket.
int DoClose()
Close a socket by sending RST, FIN, or FIN+ACK, depend on the current state.
TracedCallback< uint32_t, uint32_t > m_cWndInflTrace
Callback pointer for cWndInfl trace chaining.
uint32_t GetRcvBufSize() const override
Get the receive buffer size.
static const char *const TcpStateName[TcpSocket::LAST_STATE]
Literal names of TCP states for use in log messages.
Definition tcp-socket.h:84
@ CA_EVENT_ECN_IS_CE
received CE marked IP packet.
@ CA_EVENT_ECN_NO_CE
ECT set, but not CE marked.
@ CA_EVENT_DELAYED_ACK
Delayed ack is sent.
@ CA_EVENT_NON_DELAYED_ACK
Non-delayed ack is sent.
@ CA_EVENT_COMPLETE_CWR
end of congestion recovery
@ CA_EVENT_LOSS
loss timeout
@ CA_EVENT_TX_START
first transmit when no packets in flight
UseEcn_t
Parameter value related to ECN enable/disable functionality similar to sysctl for tcp_ecn.
@ AcceptOnly
Enable only when the peer endpoint is ECN capable.
static INTERNET_EXPORT const char *const TcpCongStateName[TcpSocketState::CA_LAST_STATE]
Literal names of TCP states for use in log messages.
TcpCongState_t
Definition of the Congestion state machine.
@ CA_RECOVERY
CWND was reduced, we are fast-retransmitting.
@ CA_DISORDER
In all the respects it is "Open", but requires a bit more attention.
@ CA_CWR
cWnd was reduced due to some congestion notification event, such as ECN, ICMP source quench,...
@ CA_LOSS
CWND was reduced due to RTO timeout or SACK reneging.
@ CA_OPEN
Normal state, no dubious events.
@ DctcpEcn
ECN functionality as described in RFC 8257.
@ ClassicEcn
ECN functionality as described in RFC 3168.
EcnState_t
Definition of the Ecn state machine.
@ ECN_CWR_SENT
Sender has reduced the congestion window, and sent a packet with CWR bit set in TCP header.
@ ECN_DISABLED
ECN disabled traffic.
@ ECN_ECE_RCVD
Last ACK received had ECE bit set in TCP header.
@ ECN_IDLE
ECN is enabled but currently there is no action pertaining to ECE or CWR to be taken.
@ ECN_CE_RCVD
Last packet received had CE bit set in IP header.
@ ECN_SENDING_ECE
Receiver sends an ACK with ECE bit set in TCP header.
static INTERNET_EXPORT const char *const EcnStateName[TcpSocketState::ECN_CWR_SENT+1]
Literal names of ECN states for use in log messages.
Item that encloses the application packet and some flags for it.
Definition tcp-tx-item.h:22
Ptr< Packet > GetPacketCopy() const
Get a copy of the Packet underlying this item.
bool IsRetrans() const
Is the item retransmitted?
Simulation virtual time values and global simulation resolution.
Definition nstime.h:96
double GetSeconds() const
Get an approximation of the time stored in this instance in the indicated unit.
Definition nstime.h:399
Time TimeStep(uint64_t ts)
Scheduler interface.
Definition nstime.h:1478
@ S
second
Definition nstime.h:107
static Time FromDouble(double value, Unit unit)
Create a Time equal to value in unit unit.
Definition nstime.h:518
bool IsZero() const
Exactly equivalent to t == 0.
Definition nstime.h:306
AttributeValue implementation for Time.
Definition nstime.h:1483
A simple virtual Timer class.
Definition timer.h:67
a unique identifier for an interface.
Definition type-id.h:49
TypeId SetParent(TypeId tid)
Set the parent TypeId.
Definition type-id.cc:999
Hold an unsigned integer type.
Definition uinteger.h:34
uint16_t port
Definition dsdv-manet.cc:33
#define NS_ASSERT(condition)
At runtime, in debugging builds, if this condition is not true, the program prints the source file,...
Definition assert.h:55
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Definition assert.h:75
Ptr< const AttributeChecker > MakeBooleanChecker()
Definition boolean.cc:113
Ptr< const AttributeAccessor > MakeBooleanAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition boolean.h:70
Ptr< const AttributeAccessor > MakeCallbackAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition callback.h:826
Ptr< const AttributeChecker > MakeCallbackChecker()
Definition callback.cc:77
Ptr< const AttributeChecker > MakeDoubleChecker()
Definition double.h:82
Ptr< const AttributeAccessor > MakeDoubleAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition double.h:32
Ptr< const AttributeAccessor > MakeEnumAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition enum.h:223
Ptr< const AttributeAccessor > MakePointerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition pointer.h:250
Ptr< AttributeChecker > MakePointerChecker()
Create a PointerChecker for a type.
Definition pointer.h:273
Ptr< const AttributeAccessor > MakeTimeAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition nstime.h:1484
Ptr< const AttributeChecker > MakeTimeChecker()
Helper to make an unbounded Time checker.
Definition nstime.h:1504
Ptr< const AttributeChecker > MakeUintegerChecker()
Definition uinteger.h:85
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method.
Definition uinteger.h:35
Callback< R, Args... > MakeCallback(R(T::*memPtr)(Args...), OBJ objPtr)
Build Callbacks for class method members which take varying numbers of arguments and potentially retu...
Definition callback.h:690
Callback< R, Args... > MakeNullCallback()
Build null Callbacks which take no arguments, for varying number of template arguments,...
Definition callback.h:734
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message.
Definition abort.h:133
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_ABORT_MSG_IF(cond, msg)
Abnormal program termination if a condition is true, with a message.
Definition abort.h:97
int64x64_t Max(const int64x64_t &a, const int64x64_t &b)
Maximum.
Definition int64x64.h:231
#define NS_LOG_ERROR(msg)
Use NS_LOG to output a message of level LOG_ERROR.
Definition log.h:246
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition log.h:194
#define NS_LOG_DEBUG(msg)
Use NS_LOG to output a message of level LOG_DEBUG.
Definition log.h:260
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition log.h:274
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
#define NS_LOG_WARN(msg)
Use NS_LOG to output a message of level LOG_WARN.
Definition log.h:253
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
Definition log.h:267
Ptr< T > CreateObject(Args &&... args)
Create an object by type, with varying number of constructor parameters.
Definition object.h:627
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
Definition object-base.h:35
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
Definition ptr.h:454
SequenceNumber< uint32_t, int32_t > SequenceNumber32
32 bit Sequence number.
@ ESTABLISHED
Connection established.
Definition tcp-socket.h:61
@ FIN_WAIT_2
All buffered data sent, waiting for remote to shutdown.
Definition tcp-socket.h:70
@ LISTEN
Listening for a connection.
Definition tcp-socket.h:57
@ CLOSE_WAIT
Remote side has shutdown and is waiting for us to finish writing our data and to shutdown (we have to...
Definition tcp-socket.h:62
@ SYN_SENT
Sent a connection request, waiting for ack.
Definition tcp-socket.h:58
@ CLOSED
Socket is finished.
Definition tcp-socket.h:56
@ FIN_WAIT_1
Our side has shutdown, waiting to complete transmission of remaining buffered data.
Definition tcp-socket.h:68
@ TIME_WAIT
Timeout to catch resent junk before entering closed, can only be entered from FIN_WAIT2 or CLOSING.
Definition tcp-socket.h:73
@ SYN_RCVD
Received a connection request, sent ack, waiting for final ack in three-way handshake.
Definition tcp-socket.h:59
@ LAST_ACK
Our side has shutdown after remote has shutdown.
Definition tcp-socket.h:65
@ CLOSING
Both sides have shutdown but we still have data we have to finish sending.
Definition tcp-socket.h:71
Time MicroSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition nstime.h:1415
Time Seconds(double value)
Construct a Time in the indicated unit.
Definition nstime.h:1381
Time MilliSeconds(uint64_t value)
Construct a Time in the indicated unit.
Definition nstime.h:1398
Ptr< const TraceSourceAccessor > MakeTraceSourceAccessor(T a)
Create a TraceSourceAccessor which will control access to the underlying trace source.
const std::map< std::pair< ns3::TcpSocketBase::TcpPacketType_t, ns3::TcpSocketState::EcnMode_t >, bool > ECN_RESTRICTION_MAP
map TcpPacketType and EcnMode to boolean value to check whether ECN-marking is allowed or not
Every class exported by the ns3 library is enclosed in the ns3 namespace.
Ptr< const AttributeChecker > MakeEnumChecker(T v, std::string n, Ts... args)
Make an EnumChecker pre-configured with a set of allowed values by name.
Definition enum.h:181
Ptr< T1 > DynamicCast(const Ptr< T2 > &p)
Cast a Ptr.
Definition ptr.h:605
Ptr< T > CopyObject(Ptr< const T > object)
Definition object.h:597
ns3::Time timeout