Difference between revisions of "Unit TCP"
(15 intermediate revisions by the same user not shown) | |||
Line 22: | Line 22: | ||
TCP Send and Recv do not use a block buffer as per UDP etc. Instead the data for each Segment is stored in memory (TCP_MAX_MSS) allocated with the Segment. The Free and Used values still track the amount of data in the buffer but this method allows OOB data to be handled correctly. | TCP Send and Recv do not use a block buffer as per UDP etc. Instead the data for each Segment is stored in memory (TCP_MAX_MSS) allocated with the Segment. The Free and Used values still track the amount of data in the buffer but this method allows OOB data to be handled correctly. | ||
− | TCP Sequence numbers are compared using modulo 2^32 arithmetic. The following calculations provide the | + | TCP Sequence numbers are compared using modulo 2^32 arithmetic. The following calculations provide the necessary handling of wraparound etc. |
LT = (A - B) < 0 | LT = (A - B) < 0 | ||
Line 85: | Line 85: | ||
| 65536; TCP Send/Receive Buffer Sizes | | 65536; TCP Send/Receive Buffer Sizes | ||
|- | |- | ||
− | | <code>TCP_WINDOW_SIZE = | + | | <code>TCP_WINDOW_SIZE = 64240;</code> |
− | | | + | | Sliding Window Receive Size (44 x MSS) |
|- | |- | ||
| <code>TCP_INITIAL_WINDOW = 8192;</code> | | <code>TCP_INITIAL_WINDOW = 8192;</code> | ||
Line 93: | Line 93: | ||
|colspan="2"| | |colspan="2"| | ||
|- | |- | ||
− | | <code>TCP_WINDOW_TIMEOUT = | + | | <code>TCP_TIMEOUT_OFFSET = 10;</code> |
+ | | How much time offset to allow from the designated value | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | | <code>TCP_ADVERT_TIMEOUT = 100;</code> | ||
+ | | Time to wait before sending a window size update after closing the receive window | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | | <code>TCP_WINDOW_TIMEOUT = 5000;</code> | ||
| Time to wait before probing small/zero Window | | Time to wait before probing small/zero Window | ||
|- | |- | ||
Line 133: | Line 143: | ||
|- | |- | ||
| <code>TCP_HEADER_SIZE = 20;</code> | | <code>TCP_HEADER_SIZE = 20;</code> | ||
− | | SizeOf(TTCPHeader) | + | | SizeOf(TTCPHeader) Does Not Allow for Options |
|- | |- | ||
| <code>TCP_OPTIONS_SIZE = 40;</code> | | <code>TCP_OPTIONS_SIZE = 40;</code> | ||
Line 140: | Line 150: | ||
|colspan="2"| | |colspan="2"| | ||
|- | |- | ||
− | | <code>TCP_SEGMENT_SIZE = | + | | <code>TCP_SEGMENT_SIZE = 68;</code> |
− | | SizeOf(TTCPSegment) | + | | SizeOf(TTCPSegment) Including TSocketTimerItem |
|- | |- | ||
|} | |} | ||
Line 147: | Line 157: | ||
<br /> | <br /> | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
− | <div style="font-size: 14px; padding-left: 12px;">'''TCP socket state | + | <div style="font-size: 14px; padding-left: 12px;">'''TCP socket state''' <code> TCP_STATE_* </code></div> |
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
Line 188: | Line 198: | ||
<br /> | <br /> | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
− | <div style="font-size: 14px; padding-left: 12px;">'''TCP header option | + | <div style="font-size: 14px; padding-left: 12px;">'''TCP header option''' <code> TCPOPT_* </code></div> |
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
Line 232: | Line 242: | ||
<br /> | <br /> | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
− | <div style="font-size: 14px; padding-left: 12px;">'''TCP header flag | + | <div style="font-size: 14px; padding-left: 12px;">'''TCP header flag''' <code> TCP_FLAG_* </code></div> |
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
Line 274: | Line 284: | ||
<br /> | <br /> | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 20px; padding-bottom: 15px;"> | ||
− | <div style="font-size: 14px; padding-left: 12px;">'''TCP port | + | <div style="font-size: 14px; padding-left: 12px;">'''TCP port''' <code> TCP_PORT_* </code></div> |
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
Line 291: | Line 301: | ||
---- | ---- | ||
− | '' | + | |
+ | '''TCP header''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PTCPHeader = ^TTCPHeader;</code> | ||
+ | |||
+ | <code>TTCPHeader = packed record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | |colspan="2"|Note: Some TCP definitions are in the Protocol or IP modules | ||
+ | |- | ||
+ | |colspan="2"|Note: 20 Bytes unless TCP Options are added | ||
+ | |- | ||
+ | | <code>SourcePort:Word;</code> | ||
+ | | Network Order | ||
+ | |- | ||
+ | | <code>DestPort:Word;</code> | ||
+ | | Network Order | ||
+ | |- | ||
+ | | <code>Sequence:LongWord;</code> | ||
+ | | First Sequence number in Data | ||
+ | |- | ||
+ | | <code>Acknowledge:LongWord;</code> | ||
+ | | Next Sequence number expected | ||
+ | |- | ||
+ | | <code>HeaderLength:Byte;</code> | ||
+ | | Number of 32 bit words in Header and Options (Bits 4-7 Reserved) | ||
+ | |- | ||
+ | | <code>Flags:Byte;</code> | ||
+ | | Flags for TCP Control (Bits 1-2 Reserved) | ||
+ | |- | ||
+ | | <code>WindowSize:Word;</code> | ||
+ | | Max 65536 (See WindowScale for higher values) | ||
+ | |- | ||
+ | | <code>Checksum:Word;</code> | ||
+ | | As per standard (Header, Options and Data) | ||
+ | |- | ||
+ | | <code>Urgent:Word;</code> | ||
+ | | | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | |||
+ | '''TCP segment''' | ||
+ | |||
+ | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;"> | ||
+ | <code>PTCPSegment = ^TTCPSegment;</code> | ||
+ | |||
+ | <code>TTCPSegment = record</code> | ||
+ | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
+ | {| class="wikitable" style="font-size: 14px; background: white;" | ||
+ | |- | ||
+ | |colspan="2"|Note: 48 Bytes (Used by TCPSendBuffer/TCPRecvBuffer) | ||
+ | |- | ||
+ | | <code>Size:Word;</code> | ||
+ | | Size of Segment Data (Can be zero) | ||
+ | |- | ||
+ | | <code>Data:Pointer;</code> | ||
+ | | Pointer to Data in Buffer (Can be nil) | ||
+ | |- | ||
+ | | <code>FirstSequence:LongWord;</code> | ||
+ | | Start Sequence of Data | ||
+ | |- | ||
+ | | <code>LastSequence:LongWord;</code> | ||
+ | | End Sequence of Data (including Control bits)(actually the Start Sequence of next Segment) | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | | <code>Control:Word;</code> | ||
+ | | Control Bits on this segment (SYN/FIN/URG) (Send/Recv) | ||
+ | |- | ||
+ | | <code>Transferred:WordBool;</code> | ||
+ | | Data has been Transferred to/from Buffer (Send/Recv) | ||
+ | |- | ||
+ | | <code>Acknowledged:WordBool;</code> | ||
+ | | Data has been Acknowledged (Send/Recv) | ||
+ | |- | ||
+ | | <code>SelectiveAck:WordBool;</code> | ||
+ | | Data has been Selective Acknowledged (Send/Recv) | ||
+ | |- | ||
+ | | <code>RoundTripTime:Int64;</code> | ||
+ | | | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | | <code>Count:Word;</code> | ||
+ | | Transmit Count (Send) | ||
+ | |- | ||
+ | | <code>Timeout:Int64;</code> | ||
+ | | Transmit (Send)/Acknowledge (Recv) Timeout | ||
+ | |- | ||
+ | | <code>Prev:PTCPSegment;</code> | ||
+ | | Pointer to Prev Segment | ||
+ | |- | ||
+ | | <code>Next:PTCPSegment;</code> | ||
+ | | Pointer to Next Segment | ||
+ | |- | ||
+ | |colspan="2"| | ||
+ | |- | ||
+ | | <code>Item:TSocketTimerItem;</code> | ||
+ | | Socket Timer Item for this Segment | ||
+ | |- | ||
+ | |} | ||
+ | </div></div> | ||
+ | <br /> | ||
=== Class definitions === | === Class definitions === | ||
---- | ---- | ||
− | '' | + | |
+ | '''TCP specific classes''' | ||
+ | |||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | [[TTCPProtocolTransport|<code>TTCPProtocolTransport = class(TProtocolTransport)</code>]] | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | [[TTCPProtocol|<code>TTCPProtocol = class(TNetworkProtocol)</code>]] | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | [[TTCPSocket|<code>TTCPSocket = class(TProtocolSocket)</code>]] | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | [[TTCPState|<code>TTCPState = class(TProtocolState)</code>]] | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | [[TTCPOptions|<code>TTCPOptions = class(TProtocolOptions)</code>]] | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | [[TTCPSendBuffer|<code>TTCPSendBuffer = class(TSocketBuffer)</code>]] | ||
+ | |- | ||
+ | |} | ||
+ | {| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;" | ||
+ | |- | ||
+ | | [[TTCPRecvBuffer|<code>TTCPRecvBuffer = class(TSocketBuffer)</code>]] | ||
+ | |- | ||
+ | |} | ||
+ | <br /> | ||
=== Public variables === | === Public variables === | ||
Line 314: | Line 467: | ||
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
− | |- | + | |-https://ultibo.org/wiki/Unit_Sockets# |
− | ! | + | ! Note |
| None documented | | None documented | ||
|- | |- | ||
Line 330: | Line 483: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Buffer |
| The complete packet including Transport header | | The complete packet including Transport header | ||
|- | |- | ||
Line 342: | Line 495: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Buffer |
| The complete packet including Transport header | | The complete packet including Transport header | ||
|- | |- | ||
Line 350: | Line 503: | ||
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | <div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial; padding-top: 0px; padding-bottom: 15px;"> | ||
<pre style="border: 0; padding-bottom:0px;">function GetTCPHeaderLength(AFamily:Word; ABuffer:Pointer):Word;</pre> | <pre style="border: 0; padding-bottom:0px;">function GetTCPHeaderLength(AFamily:Word; ABuffer:Pointer):Word;</pre> | ||
− | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' | + | <div style="font-size: 14px; padding-left: 12px;">'''Description:''' To be documented</div> |
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | <div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;"> | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Buffer |
| The complete packet including Transport header | | The complete packet including Transport header | ||
|- | |- | ||
Line 366: | Line 519: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Buffer |
| The complete packet including Transport header | | The complete packet including Transport header | ||
|- | |- | ||
Line 378: | Line 531: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Buffer |
| The complete packet including Transport header | | The complete packet including Transport header | ||
|- | |- | ||
Line 390: | Line 543: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Buffer |
| The complete packet including Transport header | | The complete packet including Transport header | ||
|- | |- | ||
Line 402: | Line 555: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Note |
| None documented | | None documented | ||
|- | |- | ||
Line 414: | Line 567: | ||
{| class="wikitable" style="font-size: 14px; background: white;" | {| class="wikitable" style="font-size: 14px; background: white;" | ||
|- | |- | ||
− | ! | + | ! Note |
| None documented | | None documented | ||
|- | |- |
Latest revision as of 01:38, 30 May 2018
Return to Unit Reference
Contents
[hide]Description
Ultibo TCP (Transmission Control Protocol) unit
Notes:
Segment handling:
Send adds new segments to the end of the list only accepts ACKs for whole segments.
Recv adds/inserts segments in correct SEQ order accepts overlapping segments only sends ACKs for whole segments.
Send will coalesce small data writes into larger segments if options allow this.
Recv will store the segments exactly as received.
TCP Send and Recv do not use a block buffer as per UDP etc. Instead the data for each Segment is stored in memory (TCP_MAX_MSS) allocated with the Segment. The Free and Used values still track the amount of data in the buffer but this method allows OOB data to be handled correctly.
TCP Sequence numbers are compared using modulo 2^32 arithmetic. The following calculations provide the necessary handling of wraparound etc.
LT = (A - B) < 0
LEQ = (A - B) <= 0
GT = (A - B) > 0
GEQ = (A - B) >= 0
See GlobalSock.pas for actual functions that implement this.
Constants
TCP_*
TCP_STATE_*
TCPOPT_*
TCP_FLAG_*
TCP_PORT_*
Type definitions
TCP header
TCP segment
Class definitions
TCP specific classes
TTCPProtocolTransport = class(TProtocolTransport)
|
TTCPProtocol = class(TNetworkProtocol)
|
TTCPSocket = class(TProtocolSocket)
|
TTCPState = class(TProtocolState)
|
TTCPOptions = class(TProtocolOptions)
|
TTCPSendBuffer = class(TSocketBuffer)
|
TTCPRecvBuffer = class(TSocketBuffer)
|
Public variables
None defined
Function declarations
Initialization functions
TCP functions
function CheckTCP(AFamily:Word; ABuffer:Pointer):Boolean;
function GetTCPHeaderOffset(AFamily:Word; ABuffer:Pointer):Word;
function GetTCPHeaderLength(AFamily:Word; ABuffer:Pointer):Word;
function GetTCPOptionsLength(AFamily:Word; ABuffer:Pointer):Word;
function GetTCPDataOffset(AFamily:Word; ABuffer:Pointer):Word;
function GetTCPDataLength(AFamily:Word; ABuffer:Pointer):Word;
function ChecksumTCPRecv(AFamily:Word; APseudo:PIPPseudo; ABuffer:Pointer; AOffset,ALength:Word):Word;
function ChecksumTCPSend(AFamily:Word; APseudo:PIPPseudo; AHeader:PTCPHeader; AOptions,AData:Pointer; AOptionsLength,ADataLength:Word):Word;
Return to Unit Reference