Skip to content

Commit 771595d

Browse files
author
Ravi Sankar Penta
committed
- With ovs atomic transaction, flows are actually executed when Commit() is called so we no longer need the earlier workaround.
1 parent c71fbc0 commit 771595d

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
@@ -440,7 +440,8 @@ func (oc *ovsController) UpdateEgressNetworkPolicyRules(policies []networkapi.Eg
440440
otx.DeleteFlows("table=101, reg0=%d", vnid)
441441
otx.AddFlow("table=101, reg0=%d, priority=1, actions=drop", vnid)
442442
} else /* vnid != 0 && len(policies) == 1 */ {
443-
var flows []string
443+
otx.DeleteFlows("table=101, reg0=%d", vnid)
444+
444445
dnsFound := false
445446
for i, rule := range policies[0].Spec.Egress {
446447
priority := len(policies[0].Spec.Egress) - i
@@ -474,25 +475,17 @@ func (oc *ovsController) UpdateEgressNetworkPolicyRules(policies []networkapi.Eg
474475
dst = fmt.Sprintf(", nw_dst=%s", selector)
475476
}
476477

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

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

498491
txErr := otx.Commit()

0 commit comments

Comments
 (0)