1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
|
// Copyright 2020 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package testbench has utilities to send and receive packets and also command
// the DUT to run POSIX functions.
package testbench
import (
"flag"
"fmt"
"math/rand"
"net"
"strings"
"testing"
"time"
"github.com/mohae/deepcopy"
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/tcpip"
"gvisor.dev/gvisor/pkg/tcpip/header"
"gvisor.dev/gvisor/pkg/tcpip/seqnum"
)
var localIPv4 = flag.String("local_ipv4", "", "local IPv4 address for test packets")
var remoteIPv4 = flag.String("remote_ipv4", "", "remote IPv4 address for test packets")
var localMAC = flag.String("local_mac", "", "local mac address for test packets")
var remoteMAC = flag.String("remote_mac", "", "remote mac address for test packets")
// pickPort makes a new socket and returns the socket FD and port. The caller
// must close the FD when done with the port if there is no error.
func pickPort() (int, uint16, error) {
fd, err := unix.Socket(unix.AF_INET, unix.SOCK_STREAM, 0)
if err != nil {
return -1, 0, err
}
var sa unix.SockaddrInet4
copy(sa.Addr[0:4], net.ParseIP(*localIPv4).To4())
if err := unix.Bind(fd, &sa); err != nil {
unix.Close(fd)
return -1, 0, err
}
newSockAddr, err := unix.Getsockname(fd)
if err != nil {
unix.Close(fd)
return -1, 0, err
}
newSockAddrInet4, ok := newSockAddr.(*unix.SockaddrInet4)
if !ok {
unix.Close(fd)
return -1, 0, fmt.Errorf("can't cast Getsockname result to SockaddrInet4")
}
return fd, uint16(newSockAddrInet4.Port), nil
}
// TCPIPv4 maintains state about a TCP/IPv4 connection.
type TCPIPv4 struct {
outgoing Layers
incoming Layers
LocalSeqNum seqnum.Value
RemoteSeqNum seqnum.Value
SynAck *TCP
sniffer Sniffer
injector Injector
portPickerFD int
t *testing.T
}
// tcpLayerIndex is the position of the TCP layer in the TCPIPv4 connection. It
// is the third, after Ethernet and IPv4.
const tcpLayerIndex int = 2
// NewTCPIPv4 creates a new TCPIPv4 connection with reasonable defaults.
func NewTCPIPv4(t *testing.T, outgoingTCP, incomingTCP TCP) TCPIPv4 {
lMAC, err := tcpip.ParseMACAddress(*localMAC)
if err != nil {
t.Fatalf("can't parse localMAC %q: %s", *localMAC, err)
}
rMAC, err := tcpip.ParseMACAddress(*remoteMAC)
if err != nil {
t.Fatalf("can't parse remoteMAC %q: %s", *remoteMAC, err)
}
portPickerFD, localPort, err := pickPort()
if err != nil {
t.Fatalf("can't pick a port: %s", err)
}
lIP := tcpip.Address(net.ParseIP(*localIPv4).To4())
rIP := tcpip.Address(net.ParseIP(*remoteIPv4).To4())
sniffer, err := NewSniffer(t)
if err != nil {
t.Fatalf("can't make new sniffer: %s", err)
}
injector, err := NewInjector(t)
if err != nil {
t.Fatalf("can't make new injector: %s", err)
}
newOutgoingTCP := &TCP{
SrcPort: &localPort,
}
if err := newOutgoingTCP.merge(outgoingTCP); err != nil {
t.Fatalf("can't merge %+v into %+v: %s", outgoingTCP, newOutgoingTCP, err)
}
newIncomingTCP := &TCP{
DstPort: &localPort,
}
if err := newIncomingTCP.merge(incomingTCP); err != nil {
t.Fatalf("can't merge %+v into %+v: %s", incomingTCP, newIncomingTCP, err)
}
return TCPIPv4{
outgoing: Layers{
&Ether{SrcAddr: &lMAC, DstAddr: &rMAC},
&IPv4{SrcAddr: &lIP, DstAddr: &rIP},
newOutgoingTCP},
incoming: Layers{
&Ether{SrcAddr: &rMAC, DstAddr: &lMAC},
&IPv4{SrcAddr: &rIP, DstAddr: &lIP},
newIncomingTCP},
sniffer: sniffer,
injector: injector,
portPickerFD: portPickerFD,
t: t,
LocalSeqNum: seqnum.Value(rand.Uint32()),
}
}
// Close the injector and sniffer associated with this connection.
func (conn *TCPIPv4) Close() {
conn.sniffer.Close()
conn.injector.Close()
if err := unix.Close(conn.portPickerFD); err != nil {
conn.t.Fatalf("can't close portPickerFD: %s", err)
}
conn.portPickerFD = -1
}
// CreateFrame builds a frame for the connection with tcp overriding defaults
// and additionalLayers added after the TCP header.
func (conn *TCPIPv4) CreateFrame(tcp TCP, additionalLayers ...Layer) Layers {
if tcp.SeqNum == nil {
tcp.SeqNum = Uint32(uint32(conn.LocalSeqNum))
}
if tcp.AckNum == nil {
tcp.AckNum = Uint32(uint32(conn.RemoteSeqNum))
}
layersToSend := deepcopy.Copy(conn.outgoing).(Layers)
if err := layersToSend[tcpLayerIndex].(*TCP).merge(tcp); err != nil {
conn.t.Fatalf("can't merge %+v into %+v: %s", tcp, layersToSend[tcpLayerIndex], err)
}
layersToSend = append(layersToSend, additionalLayers...)
return layersToSend
}
// SendFrame sends a frame with reasonable defaults.
func (conn *TCPIPv4) SendFrame(frame Layers) {
outBytes, err := frame.toBytes()
if err != nil {
conn.t.Fatalf("can't build outgoing TCP packet: %s", err)
}
conn.injector.Send(outBytes)
// Compute the next TCP sequence number.
for i := tcpLayerIndex + 1; i < len(frame); i++ {
conn.LocalSeqNum.UpdateForward(seqnum.Size(frame[i].length()))
}
tcp := frame[tcpLayerIndex].(*TCP)
if tcp.Flags != nil && *tcp.Flags&(header.TCPFlagSyn|header.TCPFlagFin) != 0 {
conn.LocalSeqNum.UpdateForward(1)
}
}
// Send a packet with reasonable defaults and override some fields by tcp.
func (conn *TCPIPv4) Send(tcp TCP, additionalLayers ...Layer) {
conn.SendFrame(conn.CreateFrame(tcp, additionalLayers...))
}
// Recv gets a packet from the sniffer within the timeout provided.
// If no packet arrives before the timeout, it returns nil.
func (conn *TCPIPv4) Recv(timeout time.Duration) *TCP {
layers := conn.RecvFrame(timeout)
if tcpLayerIndex < len(layers) {
return layers[tcpLayerIndex].(*TCP)
}
return nil
}
// RecvFrame gets a frame (of type Layers) within the timeout provided.
// If no frame arrives before the timeout, it returns nil.
func (conn *TCPIPv4) RecvFrame(timeout time.Duration) Layers {
deadline := time.Now().Add(timeout)
for {
timeout = time.Until(deadline)
if timeout <= 0 {
break
}
b := conn.sniffer.Recv(timeout)
if b == nil {
break
}
layers, err := ParseEther(b)
if err != nil {
conn.t.Logf("can't parse frame: %s", err)
continue // Ignore packets that can't be parsed.
}
if !conn.incoming.match(layers) {
continue // Ignore packets that don't match the expected incoming.
}
tcpHeader := (layers[tcpLayerIndex]).(*TCP)
conn.RemoteSeqNum = seqnum.Value(*tcpHeader.SeqNum)
if *tcpHeader.Flags&(header.TCPFlagSyn|header.TCPFlagFin) != 0 {
conn.RemoteSeqNum.UpdateForward(1)
}
for i := tcpLayerIndex + 1; i < len(layers); i++ {
conn.RemoteSeqNum.UpdateForward(seqnum.Size(layers[i].length()))
}
return layers
}
return nil
}
// Expect a packet that matches the provided tcp within the timeout specified.
// If it doesn't arrive in time, it returns nil.
func (conn *TCPIPv4) Expect(tcp TCP, timeout time.Duration) (*TCP, error) {
// We cannot implement this directly using ExpectFrame as we cannot specify
// the Payload part.
deadline := time.Now().Add(timeout)
var allTCP []string
for {
var gotTCP *TCP
if timeout = time.Until(deadline); timeout > 0 {
gotTCP = conn.Recv(timeout)
}
if gotTCP == nil {
return nil, fmt.Errorf("got %d packets:\n%s", len(allTCP), strings.Join(allTCP, "\n"))
}
if tcp.match(gotTCP) {
return gotTCP, nil
}
allTCP = append(allTCP, gotTCP.String())
}
}
// ExpectFrame expects a frame that matches the specified layers within the
// timeout specified. If it doesn't arrive in time, it returns nil.
func (conn *TCPIPv4) ExpectFrame(layers Layers, timeout time.Duration) Layers {
deadline := time.Now().Add(timeout)
for {
timeout = time.Until(deadline)
if timeout <= 0 {
return nil
}
gotLayers := conn.RecvFrame(timeout)
if layers.match(gotLayers) {
return gotLayers
}
}
}
// ExpectData is a convenient method that expects a TCP packet along with
// the payload to arrive within the timeout specified. If it doesn't arrive
// in time, it causes a fatal test failure.
func (conn *TCPIPv4) ExpectData(tcp TCP, data []byte, timeout time.Duration) {
expected := []Layer{&Ether{}, &IPv4{}, &tcp}
if len(data) > 0 {
expected = append(expected, &Payload{Bytes: data})
}
if conn.ExpectFrame(expected, timeout) == nil {
conn.t.Fatalf("expected to get a TCP frame %s with payload %x", &tcp, data)
}
}
// Handshake performs a TCP 3-way handshake.
func (conn *TCPIPv4) Handshake() {
// Send the SYN.
conn.Send(TCP{Flags: Uint8(header.TCPFlagSyn)})
// Wait for the SYN-ACK.
synAck, err := conn.Expect(TCP{Flags: Uint8(header.TCPFlagSyn | header.TCPFlagAck)}, time.Second)
if synAck == nil {
conn.t.Fatalf("didn't get synack during handshake: %s", err)
}
conn.SynAck = synAck
// Send an ACK.
conn.Send(TCP{Flags: Uint8(header.TCPFlagAck)})
}
// UDPIPv4 maintains state about a UDP/IPv4 connection.
type UDPIPv4 struct {
outgoing Layers
incoming Layers
sniffer Sniffer
injector Injector
portPickerFD int
t *testing.T
}
// udpLayerIndex is the position of the UDP layer in the UDPIPv4 connection. It
// is the third, after Ethernet and IPv4.
const udpLayerIndex int = 2
// NewUDPIPv4 creates a new UDPIPv4 connection with reasonable defaults.
func NewUDPIPv4(t *testing.T, outgoingUDP, incomingUDP UDP) UDPIPv4 {
lMAC, err := tcpip.ParseMACAddress(*localMAC)
if err != nil {
t.Fatalf("can't parse localMAC %q: %s", *localMAC, err)
}
rMAC, err := tcpip.ParseMACAddress(*remoteMAC)
if err != nil {
t.Fatalf("can't parse remoteMAC %q: %s", *remoteMAC, err)
}
portPickerFD, localPort, err := pickPort()
if err != nil {
t.Fatalf("can't pick a port: %s", err)
}
lIP := tcpip.Address(net.ParseIP(*localIPv4).To4())
rIP := tcpip.Address(net.ParseIP(*remoteIPv4).To4())
sniffer, err := NewSniffer(t)
if err != nil {
t.Fatalf("can't make new sniffer: %s", err)
}
injector, err := NewInjector(t)
if err != nil {
t.Fatalf("can't make new injector: %s", err)
}
newOutgoingUDP := &UDP{
SrcPort: &localPort,
}
if err := newOutgoingUDP.merge(outgoingUDP); err != nil {
t.Fatalf("can't merge %+v into %+v: %s", outgoingUDP, newOutgoingUDP, err)
}
newIncomingUDP := &UDP{
DstPort: &localPort,
}
if err := newIncomingUDP.merge(incomingUDP); err != nil {
t.Fatalf("can't merge %+v into %+v: %s", incomingUDP, newIncomingUDP, err)
}
return UDPIPv4{
outgoing: Layers{
&Ether{SrcAddr: &lMAC, DstAddr: &rMAC},
&IPv4{SrcAddr: &lIP, DstAddr: &rIP},
newOutgoingUDP},
incoming: Layers{
&Ether{SrcAddr: &rMAC, DstAddr: &lMAC},
&IPv4{SrcAddr: &rIP, DstAddr: &lIP},
newIncomingUDP},
sniffer: sniffer,
injector: injector,
portPickerFD: portPickerFD,
t: t,
}
}
// Close the injector and sniffer associated with this connection.
func (conn *UDPIPv4) Close() {
conn.sniffer.Close()
conn.injector.Close()
if err := unix.Close(conn.portPickerFD); err != nil {
conn.t.Fatalf("can't close portPickerFD: %s", err)
}
conn.portPickerFD = -1
}
// CreateFrame builds a frame for the connection with the provided udp
// overriding defaults and the additionalLayers added after the UDP header.
func (conn *UDPIPv4) CreateFrame(udp UDP, additionalLayers ...Layer) Layers {
layersToSend := deepcopy.Copy(conn.outgoing).(Layers)
if err := layersToSend[udpLayerIndex].(*UDP).merge(udp); err != nil {
conn.t.Fatalf("can't merge %+v into %+v: %s", udp, layersToSend[udpLayerIndex], err)
}
layersToSend = append(layersToSend, additionalLayers...)
return layersToSend
}
// SendFrame sends a frame with reasonable defaults.
func (conn *UDPIPv4) SendFrame(frame Layers) {
outBytes, err := frame.toBytes()
if err != nil {
conn.t.Fatalf("can't build outgoing UDP packet: %s", err)
}
conn.injector.Send(outBytes)
}
// Send a packet with reasonable defaults and override some fields by udp.
func (conn *UDPIPv4) Send(udp UDP, additionalLayers ...Layer) {
conn.SendFrame(conn.CreateFrame(udp, additionalLayers...))
}
// Recv gets a packet from the sniffer within the timeout provided. If no packet
// arrives before the timeout, it returns nil.
func (conn *UDPIPv4) Recv(timeout time.Duration) *UDP {
deadline := time.Now().Add(timeout)
for {
timeout = time.Until(deadline)
if timeout <= 0 {
break
}
b := conn.sniffer.Recv(timeout)
if b == nil {
break
}
layers, err := ParseEther(b)
if err != nil {
conn.t.Logf("can't parse frame: %s", err)
continue // Ignore packets that can't be parsed.
}
if !conn.incoming.match(layers) {
continue // Ignore packets that don't match the expected incoming.
}
return (layers[udpLayerIndex]).(*UDP)
}
return nil
}
// Expect a packet that matches the provided udp within the timeout specified.
// If it doesn't arrive in time, the test fails.
func (conn *UDPIPv4) Expect(udp UDP, timeout time.Duration) (*UDP, error) {
deadline := time.Now().Add(timeout)
var allUDP []string
for {
var gotUDP *UDP
if timeout = time.Until(deadline); timeout > 0 {
gotUDP = conn.Recv(timeout)
}
if gotUDP == nil {
return nil, fmt.Errorf("got %d packets:\n%s", len(allUDP), strings.Join(allUDP, "\n"))
}
if udp.match(gotUDP) {
return gotUDP, nil
}
allUDP = append(allUDP, gotUDP.String())
}
}
|