Skip to content

Commit 6639410

Browse files
Merge pull request #18720 from danwinship/fix-egress-ip-reassignment
Automatic merge from submit-queue. Fix reassignment of egress IP after removal When dropping an egress IP from eth0, we weren't updating our internal state to reflect that we had done that, so if you added it back again it wouldn't do everything it needed to do. (Introduced in #18121 but not discoverable until after #18547 was fixed.) Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1547899
2 parents e28a3b2 + f1df189 commit 6639410

File tree

2 files changed

+40
-13
lines changed

2 files changed

+40
-13
lines changed

pkg/network/node/egressip.go

+1
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ func (eip *egressIPWatcher) deleteEgressIP(egressIP string) {
213213
if err := eip.releaseEgressIP(egressIP, mark); err != nil {
214214
utilruntime.HandleError(fmt.Errorf("Error releasing Egress IP %q: %v", egressIP, err))
215215
}
216+
node.assignedIPs.Delete(egressIP)
216217
}
217218

218219
if ns.assignedIP == egressIP {

pkg/network/node/egressip_test.go

+39-13
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func TestEgressIP(t *testing.T) {
5555
}
5656
err = assertFlowChanges(origFlows, flows) // no changes
5757
if err != nil {
58-
t.Fatalf("Unexpected flow changes: %v", err)
58+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
5959
}
6060

6161
// Assign NetNamespace.EgressIP first, then HostSubnet.EgressIP, with a remote EgressIP
@@ -75,7 +75,7 @@ func TestEgressIP(t *testing.T) {
7575
},
7676
)
7777
if err != nil {
78-
t.Fatalf("Unexpected flow changes: %v", err)
78+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
7979
}
8080

8181
ns42 := eip.namespacesByVNID[42]
@@ -99,7 +99,7 @@ func TestEgressIP(t *testing.T) {
9999
},
100100
)
101101
if err != nil {
102-
t.Fatalf("Unexpected flow changes: %v", err)
102+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
103103
}
104104
origFlows = flows
105105

@@ -120,7 +120,7 @@ func TestEgressIP(t *testing.T) {
120120
}
121121
err = assertFlowChanges(origFlows, flows)
122122
if err != nil {
123-
t.Fatalf("Unexpected flow changes: %v", err)
123+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
124124
}
125125

126126
if eip.nodesByEgressIP["172.17.0.100"] != node3 || eip.nodesByEgressIP["172.17.0.101"] != node3 {
@@ -143,7 +143,7 @@ func TestEgressIP(t *testing.T) {
143143
},
144144
)
145145
if err != nil {
146-
t.Fatalf("Unexpected flow changes: %v", err)
146+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
147147
}
148148
origFlows = flows
149149

@@ -169,7 +169,7 @@ func TestEgressIP(t *testing.T) {
169169
},
170170
)
171171
if err != nil {
172-
t.Fatalf("Unexpected flow changes: %v", err)
172+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
173173
}
174174

175175
ns44 := eip.namespacesByVNID[44]
@@ -193,7 +193,7 @@ func TestEgressIP(t *testing.T) {
193193
},
194194
)
195195
if err != nil {
196-
t.Fatalf("Unexpected flow changes: %v", err)
196+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
197197
}
198198
origFlows = flows
199199

@@ -214,7 +214,7 @@ func TestEgressIP(t *testing.T) {
214214
}
215215
err = assertFlowChanges(origFlows, flows)
216216
if err != nil {
217-
t.Fatalf("Unexpected flow changes: %v", err)
217+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
218218
}
219219

220220
if eip.nodesByEgressIP["172.17.0.102"] != node4 || eip.nodesByEgressIP["172.17.0.103"] != node4 {
@@ -237,7 +237,7 @@ func TestEgressIP(t *testing.T) {
237237
},
238238
)
239239
if err != nil {
240-
t.Fatalf("Unexpected flow changes: %v", err)
240+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
241241
}
242242
origFlows = flows
243243

@@ -263,14 +263,40 @@ func TestEgressIP(t *testing.T) {
263263
},
264264
)
265265
if err != nil {
266-
t.Fatalf("Unexpected flow changes: %v", err)
266+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
267267
}
268268
origFlows = flows
269269

270270
if eip.namespacesByVNID[44] != nil || eip.namespacesByEgressIP["172.17.0.102"] != nil || eip.nodesByEgressIP["172.17.0.102"] != node4 {
271271
t.Fatalf("Unexpected eip state: %#v", eip)
272272
}
273273

274+
// Add namespace EgressIP back again after having removed it...
275+
eip.updateNamespaceEgress(44, "172.17.0.102")
276+
err = assertNetlinkChange(eip, "claim 172.17.0.102")
277+
if err != nil {
278+
t.Fatalf("%v", err)
279+
}
280+
flows, err = ovsif.DumpFlows("")
281+
if err != nil {
282+
t.Fatalf("Unexpected error dumping flows: %v", err)
283+
}
284+
err = assertFlowChanges(origFlows, flows,
285+
flowChange{
286+
kind: flowAdded,
287+
match: []string{"table=100", "reg0=44", "0x0000002c->pkt_mark", "goto_table:101"},
288+
},
289+
)
290+
if err != nil {
291+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
292+
}
293+
origFlows = flows
294+
295+
ns44 = eip.namespacesByVNID[44]
296+
if ns44 == nil || eip.namespacesByEgressIP["172.17.0.102"] != ns44 || eip.nodesByEgressIP["172.17.0.102"] != node4 {
297+
t.Fatalf("Unexpected eip state: %#v", eip)
298+
}
299+
274300
// Drop remote node EgressIP
275301
eip.updateNodeEgress("172.17.0.3", []string{"172.17.0.100"})
276302
err = assertNoNetlinkChanges(eip)
@@ -292,7 +318,7 @@ func TestEgressIP(t *testing.T) {
292318
},
293319
)
294320
if err != nil {
295-
t.Fatalf("Unexpected flow changes: %v", err)
321+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
296322
}
297323
origFlows = flows
298324

@@ -321,7 +347,7 @@ func TestEgressIP(t *testing.T) {
321347
},
322348
)
323349
if err != nil {
324-
t.Fatalf("Unexpected flow changes: %v", err)
350+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
325351
}
326352
origFlows = flows
327353

@@ -341,7 +367,7 @@ func TestEgressIP(t *testing.T) {
341367
}
342368
err = assertFlowChanges(origFlows, flows)
343369
if err != nil {
344-
t.Fatalf("Unexpected flow changes: %v", err)
370+
t.Fatalf("Unexpected flow changes: %v\nOrig: %#v\nNew: %#v", err, origFlows, flows)
345371
}
346372
}
347373

0 commit comments

Comments
 (0)