-
Notifications
You must be signed in to change notification settings - Fork 74
/
ofnetSvcProxy_test.go
executable file
·500 lines (425 loc) · 14.7 KB
/
ofnetSvcProxy_test.go
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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
/***
Copyright 2016 Cisco Systems Inc. All rights reserved.
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 ofnet
import (
"fmt"
"net"
"strings"
"testing"
"github.com/contiv/libOpenflow/openflow13"
"github.com/contiv/libOpenflow/protocol"
"github.com/contiv/ofnet/ofctrl"
log "github.com/Sirupsen/logrus"
"github.com/contiv/ofnet/ovsdbDriver"
)
const (
testEP1port = 12
testEP2port = 13
testEP4port = 14
testEP1ip = "10.2.2.2"
testEP2ip = "10.2.2.3"
testEP4ip = "10.2.2.4"
)
func addRemoteEP(oa *OfnetAgent, macByte, vlan uint32, ipAddr string, t *testing.T) {
macStr := fmt.Sprintf("00:01:02:03:04:%d", macByte)
endpoint := &OfnetEndpoint{
EndpointGroup: 100,
MacAddrStr: macStr,
Vlan: uint16(vlan),
IpAddr: net.ParseIP(ipAddr),
OriginatorIp: net.ParseIP("200.1.1.200"),
}
endpoint.EndpointID = oa.getEndpointIdByIpVlan(endpoint.IpAddr, endpoint.Vlan)
log.Infof("Adding remote endpoint: %+v", endpoint)
ignore := false
// Add an Endpoint
err := oa.EndpointAdd(endpoint, &ignore)
if err != nil {
t.Fatalf("Error adding endpoint. Err: %v", err)
}
}
func addEP(oa *OfnetAgent, portNo uint32, ipAddr string, t *testing.T) {
macStr := fmt.Sprintf("00:01:02:03:04:%d", portNo)
macAddr, _ := net.ParseMAC(macStr)
endpoint := EndpointInfo{
EndpointGroup: 100,
PortNo: portNo,
MacAddr: macAddr,
Vlan: 1,
IpAddr: net.ParseIP(ipAddr),
}
log.Infof("Adding Local endpoint: %+v", endpoint)
// Add an Endpoint
err := oa.AddLocalEndpoint(endpoint)
if err != nil {
t.Fatalf("Error adding endpoint. Err: %v", err)
}
}
func getIPPkt(ipSrc, ipDst string, portNo uint32) *ofctrl.PacketIn {
p := new(ofctrl.PacketIn)
p.Header = openflow13.NewOfp13Header()
p.Header.Type = openflow13.Type_PacketIn
p.BufferId = 0xffffffff
p.Reason = 0
p.TableId = 0
p.Cookie = 0
p.Match = *openflow13.NewMatch()
inportField := openflow13.NewInPortField(portNo)
m := &p.Match
m.AddField(*inportField)
ip := protocol.NewIPv4()
ip.Version = 4
ip.IHL = 5
ip.DSCP = 0
ip.ECN = 0
ip.Length = 20
ip.Protocol = ofctrl.IP_PROTO_TCP
ip.NWSrc = net.ParseIP(ipSrc)
ip.NWDst = net.ParseIP(ipDst)
eth := protocol.NewEthernet()
eth.Ethertype = protocol.IPv4_MSG
eth.Data = ip
p.TableId = SRV_PROXY_DNAT_TBL_ID
p.Data = *eth
return p
}
func verifyWatchRemoved(t *testing.T, brName string) {
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
return
}
wFlow1 := fmt.Sprintf("priority=10,tcp,nw_dst=10.254.0.10 actions=CONTROLLER")
wFlow2 := fmt.Sprintf("priority=10,udp,nw_dst=10.254.0.10 actions=CONTROLLER")
if ofctlFlowMatch(flowList, SRV_PROXY_DNAT_TBL_ID, wFlow1) {
t.Errorf("Watch TCP flows still present %s", flowList)
} else {
log.Infof("Watch TCP flows removed as expected")
}
if ofctlFlowMatch(flowList, SRV_PROXY_DNAT_TBL_ID, wFlow2) {
t.Errorf("Watch UDP flows still present %s", flowList)
} else {
log.Infof("Watch UDP flows removed as expected")
}
}
func verifyWatchPresent(t *testing.T, brName string) {
// verify watch flows are still there
wFlow1 := fmt.Sprintf("priority=10,tcp,nw_dst=10.254.0.10 actions=CONTROLLER")
wFlow2 := fmt.Sprintf("priority=10,udp,nw_dst=10.254.0.10 actions=CONTROLLER")
checkFlows(t, brName, "Verify tcp watch flows", wFlow1, SRV_PROXY_DNAT_TBL_ID)
checkFlows(t, brName, "Verify udp watch flows", wFlow2, SRV_PROXY_DNAT_TBL_ID)
}
func verifyNATRemoved(t *testing.T, brName, provIP string) {
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
return
}
matchStr := "set_field:10.254.0.10->ip_src"
if ofctlRawFlowMatch(flowList, matchStr) {
t.Errorf("SNAT flows still present %s", flowList)
} else {
log.Infof("SNAT flows removed as expected")
}
matchStr = fmt.Sprintf("set_field:%s->ip_dst", provIP)
if ofctlRawFlowMatch(flowList, matchStr) {
t.Errorf("DNAT flows still present %s", flowList)
} else {
log.Infof("DNAT flows removed as expected")
}
}
func verifyEPDel(t *testing.T, brName, epIP string) {
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
return
}
matchStr := fmt.Sprintf("tcp,nw_src=%s", epIP)
if ofctlRawFlowMatch(flowList, matchStr) {
t.Errorf("DNAT TCP flows still present %s", flowList)
} else {
log.Infof("DNAT TCP flows removed as expected")
}
matchStr = fmt.Sprintf("udp,nw_src=%s", epIP)
if ofctlRawFlowMatch(flowList, matchStr) {
t.Errorf("DNAT UDP flows still present %s", flowList)
} else {
log.Infof("DNAT UDP flows removed as expected")
}
matchStr = fmt.Sprintf("nw_dst=%s,tp_src=9600", epIP)
if ofctlRawFlowMatch(flowList, matchStr) {
t.Errorf("SNAT flows still present %s", flowList)
} else {
log.Infof("SNAT flows removed as expected")
}
}
// Find a flow in flow list and match its action
func ofctlRawFlowMatch(flowList []string, mtStr string) bool {
for _, flowEntry := range flowList {
log.Debugf("Looking for %s in %s", mtStr, flowEntry)
if strings.Contains(flowEntry, mtStr) {
return true
}
}
return false
}
func verifyNoMacRewrite(t *testing.T, brName string, provMacs []string) {
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
return
}
for _, provMac := range provMacs {
matchStr := fmt.Sprintf("set_field:%s->eth_dst", provMac)
if ofctlRawFlowMatch(flowList, matchStr) {
t.Errorf("Unexpected MAC rewrite flows to %s FOUND %s",
provMac, flowList)
} else {
log.Infof("MAC rewrite to %s not found, as expected",
provMac)
}
}
}
func verifyLB(t *testing.T, brName string, provIPs, provMacs []string) {
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
return
}
for _, provIP := range provIPs {
matchStr := fmt.Sprintf("set_field:%s->ip_dst", provIP)
if ofctlRawFlowMatch(flowList, matchStr) {
log.Infof("DNAT to %s found", provIP)
} else {
t.Errorf("DNAT flows to %s NOT found %s", provIP, flowList)
}
matchStr = fmt.Sprintf("tcp,nw_src=%s", provIP)
if ofctlRawFlowMatch(flowList, matchStr) {
log.Infof("SNAT for %s found", provIP)
} else {
t.Errorf("SNAT flows for %s NOT found %s", provIP, flowList)
}
}
for _, provMac := range provMacs {
matchStr := fmt.Sprintf("set_field:%s->eth_dst", provMac)
if ofctlRawFlowMatch(flowList, matchStr) {
log.Infof("MAC rewrite to %s found", provMac)
} else {
t.Errorf("MAC rewrite flows to %s NOT found %s", provMac, flowList)
}
}
}
func checkFlows(t *testing.T, brName, hdr, matchStr string, tblId int) {
log.Infof("##checkFlows##: %s", hdr)
flowList, err := ofctlFlowDump(brName)
if err != nil {
t.Errorf("Error getting flow entries. Err: %v", err)
return
}
if !ofctlFlowMatch(flowList, tblId, matchStr) {
t.Errorf("Could not find the flow %s in %s", matchStr, flowList)
} else {
log.Infof("Found %s in flowList", matchStr)
}
}
func TestSvcProxyInterface(t *testing.T) {
var resp bool
rpcPort := uint16(9600)
ovsPort := uint16(9601)
lclIP := net.ParseIP("10.10.10.10")
ofnetAgent, err := NewOfnetAgent("", "vrouter", lclIP, rpcPort, ovsPort, nil)
if err != nil {
t.Fatalf("Error creating ofnet agent. Err: %v", err)
}
defer func() { ofnetAgent.Delete() }()
// Override MyAddr to local host
ofnetAgent.MyAddr = "127.0.0.1"
// Create a Master
ofnetMaster := NewOfnetMaster("", uint16(9602))
defer func() { ofnetMaster.Delete() }()
masterInfo := OfnetNode{
HostAddr: "127.0.0.1",
HostPort: uint16(9602),
}
// connect vrtr agent to master
err = ofnetAgent.AddMaster(&masterInfo, &resp)
if err != nil {
t.Errorf("Error adding master %+v. Err: %v", masterInfo, err)
}
log.Infof("Created vrouter ofnet agent: %v", ofnetAgent)
brName := "ovsbr60"
ovsDriver := ovsdbDriver.NewOvsDriver(brName)
err = ovsDriver.AddController("127.0.0.1", ovsPort)
if err != nil {
t.Fatalf("Error adding controller to ovs: %s", brName)
}
// Wait for switch to connect to controller
ofnetAgent.WaitForSwitchConnection()
// Create a vlan for the endpoint
ofnetAgent.AddNetwork(1, 1, "", "default")
// add two endpoints
addEP(ofnetAgent, testEP1port, testEP1ip, t)
addEP(ofnetAgent, testEP2port, testEP2ip, t)
// Create a service spec
svcPorts := make([]PortSpec, 3)
svcPorts[0] = PortSpec{
Protocol: "TCP",
SvcPort: 5600,
ProvPort: 9600,
}
svcPorts[1] = PortSpec{
Protocol: "UDP",
SvcPort: 5601,
ProvPort: 9600,
}
svcPorts[2] = PortSpec{
Protocol: "TCP",
SvcPort: 5602,
ProvPort: 9602,
}
svc := ServiceSpec{
IpAddress: "10.254.0.10",
Ports: svcPorts,
}
log.Infof("Adding LipService: %+v", svc)
ofnetAgent.AddSvcSpec("LipService", &svc)
// Add providers
spMacs := make([]string, 0, 2)
sps := make([]string, 1, 2)
sps[0] = "20.1.1.22"
ofnetAgent.SvcProviderUpdate("LipService", sps)
// At this point watch flows should be set up.
wFlow1 := fmt.Sprintf("priority=10,tcp,nw_dst=10.254.0.10 actions=CONTROLLER")
wFlow2 := fmt.Sprintf("priority=10,udp,nw_dst=10.254.0.10 actions=CONTROLLER")
checkFlows(t, brName, "Verify tcp watch flows", wFlow1, SRV_PROXY_DNAT_TBL_ID)
checkFlows(t, brName, "Verify udp watch flows", wFlow2, SRV_PROXY_DNAT_TBL_ID)
// inject a pkt from the EP to the service
pkt1 := getIPPkt(testEP1ip, "10.254.0.10", testEP1port)
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt1)
pkt2 := getIPPkt(testEP2ip, "10.254.0.10", testEP2port)
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt2)
// At this point, we should have NAT flows set up.
clientIPs := make([]string, 2, 2)
clientIPs[0] = testEP1ip
clientIPs[1] = testEP2ip
// verify DNAT flows
for _, cIP := range clientIPs {
dNFlow1 := fmt.Sprintf("priority=100,tcp,nw_src=%s,nw_dst=10.254.0.10,tp_dst=5600 actions=set_field:9600->tcp_dst,set_field:20.1.1.22->ip_dst,goto_table:%d", cIP, DST_GRP_TBL_ID)
checkFlows(t, brName, "TCP dNAT flow for "+cIP, dNFlow1, SRV_PROXY_DNAT_TBL_ID)
dNFlow2 := fmt.Sprintf("priority=100,tcp,nw_src=%s,nw_dst=10.254.0.10,tp_dst=5602 actions=set_field:9602->tcp_dst,set_field:20.1.1.22->ip_dst,goto_table:%d", cIP, DST_GRP_TBL_ID)
checkFlows(t, brName, "TCP dNAT flow for "+cIP, dNFlow2, SRV_PROXY_DNAT_TBL_ID)
dNFlow3 := fmt.Sprintf("priority=100,udp,nw_src=%s,nw_dst=10.254.0.10,tp_dst=5601 actions=set_field:9600->udp_dst,set_field:20.1.1.22->ip_dst,goto_table:%d", cIP, DST_GRP_TBL_ID)
checkFlows(t, brName, "UDP dNAT flow for "+cIP, dNFlow3, SRV_PROXY_DNAT_TBL_ID)
}
// verify SNAT flows
for _, cIP := range clientIPs {
sNFlow1 := fmt.Sprintf("priority=100,tcp,nw_src=20.1.1.22,nw_dst=%s,tp_src=9600 actions=set_field:5600->tcp_src,set_field:10.254.0.10->ip_src", cIP)
checkFlows(t, brName, "TCP sNAT flow for "+cIP, sNFlow1, SRV_PROXY_SNAT_TBL_ID)
sNFlow2 := fmt.Sprintf("priority=100,tcp,nw_src=20.1.1.22,nw_dst=%s,tp_src=9602 actions=set_field:5602->tcp_src,set_field:10.254.0.10->ip_src", cIP)
checkFlows(t, brName, "TCP sNAT flow for "+cIP, sNFlow2, SRV_PROXY_SNAT_TBL_ID)
sNFlow3 := fmt.Sprintf("priority=100,udp,nw_src=20.1.1.22,nw_dst=%s,tp_src=9600 actions=set_field:5601->udp_src,set_field:10.254.0.10->ip_src", cIP)
checkFlows(t, brName, "UDP sNAT flow for "+cIP, sNFlow3, SRV_PROXY_SNAT_TBL_ID)
}
// Issue a provider update with two different providers
sps[0] = "20.1.1.23"
sps = append(sps, "20.1.1.24")
ofnetAgent.SvcProviderUpdate("LipService", sps)
// now, the NAT flows should have been removed.
verifyNATRemoved(t, brName, "20.1.1.22")
verifyWatchPresent(t, brName)
// inject packets again
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt2)
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt1)
// flows should be setup in load balanced manner.
verifyLB(t, brName, sps, spMacs)
// Remove one endpoint
err = ofnetAgent.RemoveLocalEndpoint(testEP1port)
if err != nil {
t.Errorf("Error deleting endpoint: Err: %v", err)
return
}
// flows of that ep should be gone
verifyEPDel(t, brName, testEP1ip)
// add another ep and inject a pkt.
addEP(ofnetAgent, testEP4port, testEP4ip, t)
pkt3 := getIPPkt(testEP4ip, "10.254.0.10", testEP4port)
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt3)
// flows should be setup in load balanced manner.
verifyLB(t, brName, sps, spMacs)
newSvcPorts := make([]PortSpec, 3)
newSvcPorts[0] = PortSpec{
Protocol: "TCP",
SvcPort: 5600,
ProvPort: 9600,
}
newSvcPorts[1] = PortSpec{
Protocol: "UDP",
SvcPort: 5601,
ProvPort: 9600,
}
newSvcPorts[2] = PortSpec{
Protocol: "TCP",
SvcPort: 7777,
ProvPort: 9602,
}
updatedSvc := ServiceSpec{
IpAddress: "10.254.0.10",
Ports: newSvcPorts,
}
ofnetAgent.AddSvcSpec("LipService", &updatedSvc)
// Verify NAT flows were removed
verifyNATRemoved(t, brName, "20.1.1.23")
verifyNATRemoved(t, brName, "20.1.1.24")
verifyWatchPresent(t, brName)
// Add two endpoints as providers in the same subnet.
addRemoteEP(ofnetAgent, 23, 1, "10.2.2.23", t)
addRemoteEP(ofnetAgent, 24, 1, "10.2.2.24", t)
// Issue a provider update with the providers in the same subnet
// and verify mac rewrite
sps[0] = "10.2.2.23"
sps[1] = "10.2.2.24"
ofnetAgent.SvcProviderUpdate("LipService", sps)
// verify watch flows
verifyWatchPresent(t, brName)
// inject packets again
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt3)
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt2)
spMacs = append(spMacs, "00:01:02:03:04:23")
spMacs = append(spMacs, "00:01:02:03:04:24")
verifyLB(t, brName, sps, spMacs)
// verify no mac-rewrite when the prov is in a different subnet
ofnetAgent.AddNetwork(2, 2, "", "default")
addRemoteEP(ofnetAgent, 25, 2, "10.2.3.25", t)
addRemoteEP(ofnetAgent, 26, 2, "10.2.3.26", t)
sps[0] = "10.2.3.25"
sps[1] = "10.2.3.26"
ofnetAgent.SvcProviderUpdate("LipService", sps)
// previous NAT flows should be removed
verifyNATRemoved(t, brName, "10.2.2.23")
verifyNATRemoved(t, brName, "10.2.2.24")
verifyWatchPresent(t, brName)
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt3)
ofnetAgent.PacketRcvd(ofnetAgent.ofSwitch, pkt2)
// new NAT flows should be present
verifyLB(t, brName, sps, []string{})
spMacs[0] = "00:01:02:03:04:25"
spMacs[1] = "00:01:02:03:04:26"
verifyNoMacRewrite(t, brName, spMacs)
// Delete the service
ofnetAgent.DelSvcSpec("LipService", &updatedSvc)
// Make sure flows are gone
verifyWatchRemoved(t, brName)
// Verify NAT flows were removed
verifyNATRemoved(t, brName, "10.2.3.25")
verifyNATRemoved(t, brName, "10.2.3.26")
}