Documentation ¶
Overview ¶
Package context provides a test context for use in tcp tests. It also provides helper methods to assert/check certain behaviours.
Index ¶
- Constants
- type Context
- func (c *Context) AcceptWithOptions(wndScale int, synOptions header.TCPSynOptions) *RawEndpoint
- func (c *Context) BuildSegment(payload []byte, h *Headers) buffer.VectorisedView
- func (c *Context) BuildSegmentWithAddrs(payload []byte, h *Headers, src, dst tcpip.Address) buffer.VectorisedView
- func (c *Context) CheckNoPacket(errMsg string)
- func (c *Context) CheckNoPacketTimeout(errMsg string, wait time.Duration)
- func (c *Context) Cleanup()
- func (c *Context) Connect(iss seqnum.Value, rcvWnd seqnum.Size, options []byte)
- func (c *Context) Create(epRcvBuf int)
- func (c *Context) CreateConnected(iss seqnum.Value, rcvWnd seqnum.Size, epRcvBuf int)
- func (c *Context) CreateConnectedWithOptions(wantOptions header.TCPSynOptions) *RawEndpoint
- func (c *Context) CreateConnectedWithRawOptions(iss seqnum.Value, rcvWnd seqnum.Size, epRcvBuf int, options []byte)
- func (c *Context) CreateV6Endpoint(v6only bool)
- func (c *Context) GetPacket() []byte
- func (c *Context) GetPacketNonBlocking() []byte
- func (c *Context) GetV6Packet() []byte
- func (c *Context) MSSWithoutOptions() uint16
- func (c *Context) PassiveConnect(maxPayload, wndScale int, synOptions header.TCPSynOptions)
- func (c *Context) PassiveConnectWithOptions(maxPayload, wndScale int, synOptions header.TCPSynOptions) *RawEndpoint
- func (c *Context) ReceiveAndCheckPacket(data []byte, offset, size int)
- func (c *Context) ReceiveAndCheckPacketWithOptions(data []byte, offset, size, optlen int)
- func (c *Context) ReceiveNonBlockingAndCheckPacket(data []byte, offset, size int) bool
- func (c *Context) SACKEnabled() bool
- func (c *Context) SendAck(seq seqnum.Value, bytesReceived int)
- func (c *Context) SendAckWithSACK(seq seqnum.Value, bytesReceived int, sackBlocks []header.SACKBlock)
- func (c *Context) SendICMPPacket(typ header.ICMPv4Type, code uint8, p1, p2 []byte, maxTotalSize int)
- func (c *Context) SendPacket(payload []byte, h *Headers)
- func (c *Context) SendPacketWithAddrs(payload []byte, h *Headers, src, dst tcpip.Address)
- func (c *Context) SendSegment(s buffer.VectorisedView)
- func (c *Context) SendV6Packet(payload []byte, h *Headers)
- func (c *Context) SendV6PacketWithAddrs(payload []byte, h *Headers, src, dst tcpip.Address)
- func (c *Context) SetGSOEnabled(enable bool)
- func (c *Context) Stack() *stack.Stack
- type Headers
- type RawEndpoint
- func (r *RawEndpoint) SendPacket(payload []byte, opts []byte)
- func (r *RawEndpoint) SendPacketWithTS(payload []byte, tsVal uint32)
- func (r *RawEndpoint) VerifyACKHasSACK(sackBlocks []header.SACKBlock)
- func (r *RawEndpoint) VerifyACKNoSACK()
- func (r *RawEndpoint) VerifyACKRcvWnd(rcvWnd uint16)
- func (r *RawEndpoint) VerifyACKWithTS(tsVal uint32)
Constants ¶
const ( // StackAddr is the IPv4 address assigned to the stack. StackAddr = "\x0a\x00\x00\x01" // StackPort is used as the listening port in tests for passive // connects. StackPort = 1234 // TestAddr is the source address for packets sent to the stack via the // link layer endpoint. TestAddr = "\x0a\x00\x00\x02" // TestPort is the TCP port used for packets sent to the stack // via the link layer endpoint. TestPort = 4096 // StackV6Addr is the IPv6 address assigned to the stack. StackV6Addr = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01" // TestV6Addr is the source address for packets sent to the stack via // the link layer endpoint. TestV6Addr = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02" // StackV4MappedAddr is StackAddr as a mapped v6 address. StackV4MappedAddr = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff" + StackAddr // TestV4MappedAddr is TestAddr as a mapped v6 address. TestV4MappedAddr = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff" + TestAddr // V4MappedWildcardAddr is the mapped v6 representation of 0.0.0.0. V4MappedWildcardAddr = "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x00\x00\x00\x00" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Context ¶
type Context struct { // IRS holds the initial sequence number in the SYN sent by endpoint in // case of an active connect or the sequence number sent by the endpoint // in the SYN-ACK sent in response to a SYN when listening in passive // mode. IRS seqnum.Value // Port holds the port bound by EP below in case of an active connect or // the listening port number in case of a passive connect. Port uint16 // EP is the test endpoint in the stack owned by this context. This endpoint // is used in various tests to either initiate an active connect or is used // as a passive listening endpoint to accept inbound connections. EP tcpip.Endpoint // Wq is the wait queue associated with EP and is used to block for events // on EP. WQ waiter.Queue // TimeStampEnabled is true if ep is connected with the timestamp option // enabled. TimeStampEnabled bool // WindowScale is the expected window scale in SYN packets sent by // the stack. WindowScale uint8 // contains filtered or unexported fields }
Context provides an initialized Network stack and a link layer endpoint for use in TCP tests.
func New ¶
New allocates and initializes a test context containing a new stack and a link-layer endpoint.
func (*Context) AcceptWithOptions ¶
func (c *Context) AcceptWithOptions(wndScale int, synOptions header.TCPSynOptions) *RawEndpoint
AcceptWithOptions initializes a listening endpoint and connects to it with the provided options enabled. It also verifies that the SYN-ACK has the expected values for the provided options.
The function returns a RawEndpoint representing the other end of the accepted endpoint.
func (*Context) BuildSegment ¶
func (c *Context) BuildSegment(payload []byte, h *Headers) buffer.VectorisedView
BuildSegment builds a TCP segment based on the given Headers and payload.
func (*Context) BuildSegmentWithAddrs ¶
func (c *Context) BuildSegmentWithAddrs(payload []byte, h *Headers, src, dst tcpip.Address) buffer.VectorisedView
BuildSegmentWithAddrs builds a TCP segment based on the given Headers, payload and source and destination IPv4 addresses.
func (*Context) CheckNoPacket ¶
CheckNoPacket verifies that no packet is received for 1 second.
func (*Context) CheckNoPacketTimeout ¶
CheckNoPacketTimeout verifies that no packet is received during the time specified by wait.
func (*Context) Cleanup ¶
func (c *Context) Cleanup()
Cleanup closes the context endpoint if required.
func (*Context) Connect ¶
Connect performs the 3-way handshake for c.EP with the provided Initial Sequence Number (iss) and receive window(rcvWnd) and any options if specified.
It also sets the receive buffer for the endpoint to the specified value in epRcvBuf.
PreCondition: c.EP must already be created.
func (*Context) CreateConnected ¶
CreateConnected creates a connected TCP endpoint.
func (*Context) CreateConnectedWithOptions ¶
func (c *Context) CreateConnectedWithOptions(wantOptions header.TCPSynOptions) *RawEndpoint
CreateConnectedWithOptions creates and connects c.ep with the specified TCP options enabled and returns a RawEndpoint which represents the other end of the connection.
It also verifies where required(eg.Timestamp) that the ACK to the SYN-ACK does not carry an option that was not requested.
func (*Context) CreateConnectedWithRawOptions ¶
func (c *Context) CreateConnectedWithRawOptions(iss seqnum.Value, rcvWnd seqnum.Size, epRcvBuf int, options []byte)
CreateConnectedWithRawOptions creates a connected TCP endpoint and sends the specified option bytes as the Option field in the initial SYN packet.
It also sets the receive buffer for the endpoint to the specified value in epRcvBuf.
func (*Context) CreateV6Endpoint ¶
CreateV6Endpoint creates and initializes c.ep as a IPv6 Endpoint. If v6Only is true then it sets the IP_V6ONLY option on the socket to make it a IPv6 only endpoint instead of a default dual stack socket.
func (*Context) GetPacket ¶
GetPacket reads a packet from the link layer endpoint and verifies that it is an IPv4 packet with the expected source and destination addresses. It will fail with an error if no packet is received for 2 seconds.
func (*Context) GetPacketNonBlocking ¶
GetPacketNonBlocking reads a packet from the link layer endpoint and verifies that it is an IPv4 packet with the expected source and destination address. If no packet is available it will return nil immediately.
func (*Context) GetV6Packet ¶
GetV6Packet reads a single packet from the link layer endpoint of the context and asserts that it is an IPv6 Packet with the expected src/dest addresses.
func (*Context) MSSWithoutOptions ¶
MSSWithoutOptions returns the value for the MSS used by the stack when no options are in use.
func (*Context) PassiveConnect ¶
func (c *Context) PassiveConnect(maxPayload, wndScale int, synOptions header.TCPSynOptions)
PassiveConnect just disables WindowScaling and delegates the call to PassiveConnectWithOptions.
func (*Context) PassiveConnectWithOptions ¶
func (c *Context) PassiveConnectWithOptions(maxPayload, wndScale int, synOptions header.TCPSynOptions) *RawEndpoint
PassiveConnectWithOptions initiates a new connection (with the specified TCP options enabled) to the port on which the Context.ep is listening for new connections. It also validates that the SYN-ACK has the expected values for the enabled options.
NOTE: MSS is not a negotiated option and it can be asymmetric in each direction. This function uses the maxPayload to set the MSS to be sent to the peer on a connect and validates that the MSS in the SYN-ACK response is equal to the MTU - (tcphdr len + iphdr len).
wndScale is the expected window scale in the SYN-ACK and synOptions.WS is the value of the window scaling option to be sent in the SYN. If synOptions.WS > 0 then we send the WindowScale option.
func (*Context) ReceiveAndCheckPacket ¶
ReceiveAndCheckPacket reads a packet from the link layer endpoint and verifies that the packet packet payload of packet matches the slice of data indicated by offset & size.
func (*Context) ReceiveAndCheckPacketWithOptions ¶
ReceiveAndCheckPacketWithOptions reads a packet from the link layer endpoint and verifies that the packet packet payload of packet matches the slice of data indicated by offset & size and skips optlen bytes in addition to the IP TCP headers when comparing the data.
func (*Context) ReceiveNonBlockingAndCheckPacket ¶
ReceiveNonBlockingAndCheckPacket reads a packet from the link layer endpoint and verifies that the packet packet payload of packet matches the slice of data indicated by offset & size. It returns true if a packet was received and processed.
func (*Context) SACKEnabled ¶
SACKEnabled returns true if the TCP Protocol option SACKEnabled is set to true for the Stack in the context.
func (*Context) SendAckWithSACK ¶
func (c *Context) SendAckWithSACK(seq seqnum.Value, bytesReceived int, sackBlocks []header.SACKBlock)
SendAckWithSACK sends an ACK packet which includes the sackBlocks specified.
func (*Context) SendICMPPacket ¶
func (c *Context) SendICMPPacket(typ header.ICMPv4Type, code uint8, p1, p2 []byte, maxTotalSize int)
SendICMPPacket builds and sends an ICMPv4 packet via the link layer endpoint.
func (*Context) SendPacket ¶
SendPacket builds and sends a TCP segment(with the provided payload & TCP headers) in an IPv4 packet via the link layer endpoint.
func (*Context) SendPacketWithAddrs ¶
SendPacketWithAddrs builds and sends a TCP segment(with the provided payload & TCPheaders) in an IPv4 packet via the link layer endpoint using the provided source and destination IPv4 addresses.
func (*Context) SendSegment ¶
func (c *Context) SendSegment(s buffer.VectorisedView)
SendSegment sends a TCP segment that has already been built and written to a buffer.VectorisedView.
func (*Context) SendV6Packet ¶
SendV6Packet builds and sends an IPv6 Packet via the link layer endpoint of the context.
func (*Context) SendV6PacketWithAddrs ¶
SendV6PacketWithAddrs builds and sends an IPv6 Packet via the link layer endpoint of the context using the provided source and destination IPv6 addresses.
func (*Context) SetGSOEnabled ¶
SetGSOEnabled enables or disables generic segmentation offload.
type Headers ¶
type Headers struct { // SrcPort holds the src port value to be used in the packet. SrcPort uint16 // DstPort holds the destination port value to be used in the packet. DstPort uint16 // SeqNum is the value of the sequence number field in the TCP header. SeqNum seqnum.Value // AckNum represents the acknowledgement number field in the TCP header. AckNum seqnum.Value // Flags are the TCP flags in the TCP header. Flags int // RcvWnd is the window to be advertised in the ReceiveWindow field of // the TCP header. RcvWnd seqnum.Size // TCPOpts holds the options to be sent in the option field of the TCP // header. TCPOpts []byte }
Headers is used to represent the TCP header fields when building a new packet.
type RawEndpoint ¶
type RawEndpoint struct { C *Context SrcPort uint16 DstPort uint16 Flags int NextSeqNum seqnum.Value AckNum seqnum.Value WndSize seqnum.Size RecentTS uint32 // Stores the latest timestamp to echo back. TSVal uint32 // TSVal stores the last timestamp sent by this endpoint. // SackPermitted is true if SACKPermitted option was negotiated for this endpoint. SACKPermitted bool }
RawEndpoint is just a small wrapper around a TCP endpoint's state to make sending data and ACK packets easy while being able to manipulate the sequence numbers and timestamp values as needed.
func (*RawEndpoint) SendPacket ¶
func (r *RawEndpoint) SendPacket(payload []byte, opts []byte)
SendPacket is a small wrapper function to build and send packets.
func (*RawEndpoint) SendPacketWithTS ¶
func (r *RawEndpoint) SendPacketWithTS(payload []byte, tsVal uint32)
SendPacketWithTS embeds the provided tsVal in the Timestamp option for the packet to be sent out.
func (*RawEndpoint) VerifyACKHasSACK ¶
func (r *RawEndpoint) VerifyACKHasSACK(sackBlocks []header.SACKBlock)
VerifyACKHasSACK verifies that the ACK contains the specified SACKBlocks.
func (*RawEndpoint) VerifyACKNoSACK ¶
func (r *RawEndpoint) VerifyACKNoSACK()
VerifyACKNoSACK verifies that the ACK does not contain a SACK block.
func (*RawEndpoint) VerifyACKRcvWnd ¶
func (r *RawEndpoint) VerifyACKRcvWnd(rcvWnd uint16)
VerifyACKRcvWnd verifies that the window advertised by the incoming ACK matches the provided rcvWnd.
func (*RawEndpoint) VerifyACKWithTS ¶
func (r *RawEndpoint) VerifyACKWithTS(tsVal uint32)
VerifyACKWithTS verifies that the tsEcr field in the ack matches the provided tsVal.