Skip to content

Commit d0528b7

Browse files
Ravi Sankar Pentadeads2k
Ravi Sankar Penta
authored andcommitted
- With ovs atomic transaction, flows are actually executed when Commit() is called so we no longer need the earlier workaround.
1 parent 981448d commit d0528b7

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

pkg/network/node/ovscontroller.go

+3-10
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,8 @@ func (oc *ovsController) UpdateEgressNetworkPolicyRules(policies []networkapi.Eg
441441
otx.DeleteFlows("table=101, reg0=%d", vnid)
442442
otx.AddFlow("table=101, reg0=%d, priority=1, actions=drop", vnid)
443443
} else /* vnid != 0 && len(policies) == 1 */ {
444-
var flows []string
444+
otx.DeleteFlows("table=101, reg0=%d", vnid)
445+
445446
dnsFound := false
446447
for i, rule := range policies[0].Spec.Egress {
447448
priority := len(policies[0].Spec.Egress) - i
@@ -475,25 +476,17 @@ func (oc *ovsController) UpdateEgressNetworkPolicyRules(policies []networkapi.Eg
475476
dst = fmt.Sprintf(", nw_dst=%s", selector)
476477
}
477478

478-
flows = append(flows, fmt.Sprintf("table=101, reg0=%d, priority=%d, ip%s, actions=%s", vnid, priority, dst, action))
479+
otx.AddFlow("table=101, reg0=%d, priority=%d, ip%s, actions=%s", vnid, priority, dst, action)
479480
}
480481
}
481482

482-
// Temporarily drop all outgoing traffic, to avoid race conditions while modifying the other rules
483-
otx.AddFlow("table=101, reg0=%d, cookie=1, priority=65535, actions=drop", vnid)
484-
otx.DeleteFlows("table=101, reg0=%d, cookie=0/1", vnid)
485-
for _, f := range flows {
486-
otx.AddFlow(f)
487-
}
488-
489483
if dnsFound {
490484
if err := common.CheckDNSResolver(); err != nil {
491485
errs = append(errs, fmt.Errorf("DNS resolver failed: %v, dropping all traffic for namespace: %q", err, namespaces[0]))
492486
otx.DeleteFlows("table=101, reg0=%d", vnid)
493487
otx.AddFlow("table=101, reg0=%d, priority=1, actions=drop", vnid)
494488
}
495489
}
496-
otx.DeleteFlows("table=101, reg0=%d, cookie=1/1", vnid)
497490
}
498491

499492
if txErr := otx.Commit(); txErr != nil {

0 commit comments

Comments
 (0)