Skip to content

Commit 1119700

Browse files
author
Wei Tie
committed
Add iptables '-w 5' option
iptables uses xtables lock to ensure concurrent updates could be atomic. Contiv netplugin could have race condtion with kube-proxy when editing NAT tables, here add waiting 5 seconds for lock.
1 parent 1cc527f commit 1119700

File tree

2 files changed

+15
-14
lines changed

2 files changed

+15
-14
lines changed

drivers/ovsd/nodeProxy.go

+12-11
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ import (
2626
)
2727

2828
const (
29-
contivNPChain = "CONTIV-NODEPORT"
29+
contivNPChain = "CONTIV-NODEPORT"
30+
iptablesWaitLock = "5"
3031
)
3132

3233
// Presence indicates presence of an item
@@ -52,8 +53,8 @@ func NewNodeProxy() (*NodeSvcProxy, error) {
5253
}
5354

5455
// Install contiv chain and jump
55-
out, err := osexec.Command(ipTablesPath, "-t", "nat", "-N",
56-
contivNPChain).CombinedOutput()
56+
out, err := osexec.Command(ipTablesPath, "-w", iptablesWaitLock,
57+
"-t", "nat", "-N", contivNPChain).CombinedOutput()
5758
if err != nil {
5859
if !strings.Contains(string(out), "Chain already exists") {
5960
log.Errorf("Failed to setup contiv nodeport chain %v out: %s",
@@ -62,13 +63,13 @@ func NewNodeProxy() (*NodeSvcProxy, error) {
6263
}
6364
}
6465

65-
_, err = osexec.Command(ipTablesPath, "-t", "nat", "-C",
66-
"PREROUTING", "-m", "addrtype", "--dst-type", "LOCAL", "-j",
66+
_, err = osexec.Command(ipTablesPath, "-w", iptablesWaitLock, "-t", "nat",
67+
"-C", "PREROUTING", "-m", "addrtype", "--dst-type", "LOCAL", "-j",
6768
contivNPChain).CombinedOutput()
6869
if err != nil {
69-
out, err = osexec.Command(ipTablesPath, "-t", "nat", "-I",
70-
"PREROUTING", "-m", "addrtype", "--dst-type", "LOCAL", "-j",
71-
contivNPChain).CombinedOutput()
70+
out, err = osexec.Command(ipTablesPath, "-w", iptablesWaitLock,
71+
"-t", "nat", "-I", "PREROUTING", "-m", "addrtype", "--dst-type",
72+
"LOCAL", "-j", contivNPChain).CombinedOutput()
7273
if err != nil {
7374
log.Errorf("Failed to setup contiv nodeport chain jump %v out: %s",
7475
err, out)
@@ -78,7 +79,7 @@ func NewNodeProxy() (*NodeSvcProxy, error) {
7879

7980
// Flush any old rules we might have added. They will get re-added
8081
// if the service is still active
81-
osexec.Command(ipTablesPath, "-t", "nat", "-F",
82+
osexec.Command(ipTablesPath, "-w", iptablesWaitLock, "-t", "nat", "-F",
8283
contivNPChain).CombinedOutput()
8384

8485
proxy := NodeSvcProxy{}
@@ -200,8 +201,8 @@ func (p *NodeSvcProxy) SvcProviderUpdate(svcName string, providers []string) {
200201
}
201202

202203
func (p *NodeSvcProxy) execNATRule(act, dport, dest string) (string, error) {
203-
out, err := osexec.Command(p.ipTablesPath, "-t", "nat", act,
204-
contivNPChain, "-p", "tcp", "-m", "tcp", "--dport",
204+
out, err := osexec.Command(p.ipTablesPath, "-w", iptablesWaitLock,
205+
"-t", "nat", act, contivNPChain, "-p", "tcp", "-m", "tcp", "--dport",
205206
dport, "-j", "DNAT", "--to-destination",
206207
dest).CombinedOutput()
207208
return string(out), err

drivers/ovsd/nodeProxy_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ var ipTablesPath string
2929
func verifyNATRule(nodePort uint16, destIP string, destPort uint16) error {
3030
dport := fmt.Sprintf("%d", nodePort)
3131
dest := fmt.Sprintf("%s:%d", destIP, destPort)
32-
_, err := osexec.Command(ipTablesPath, "-t", "nat", "-C", contivNPChain,
33-
"-p", "tcp", "-m", "tcp", "--dport", dport, "-j",
32+
_, err := osexec.Command(ipTablesPath, "-w", "5", "-t", "nat", "-C",
33+
contivNPChain, "-p", "tcp", "-m", "tcp", "--dport", dport, "-j",
3434
"DNAT", "--to-destination", dest).CombinedOutput()
3535
return err
3636
}
@@ -45,7 +45,7 @@ func TestNodeProxy(t *testing.T) {
4545
}
4646

4747
// Verify PREROUTING jump rule exists
48-
out, err := osexec.Command(ipTablesPath, "-t", "nat", "-C",
48+
out, err := osexec.Command(ipTablesPath, "-w", "5", "-t", "nat", "-C",
4949
"PREROUTING", "-m", "addrtype", "--dst-type", "LOCAL", "-j",
5050
contivNPChain).CombinedOutput()
5151
if err != nil {

0 commit comments

Comments
 (0)