Skip to content

Commit f782553

Browse files
committed
Allow egress-router to connect to its node's IP, via the SDN
1 parent e9277a4 commit f782553

File tree

3 files changed

+40
-11
lines changed

3 files changed

+40
-11
lines changed

images/egress/router/egress-router.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function gen_iptables_rules() {
106106
fi
107107
fi
108108
done <<< "${EGRESS_DESTINATION}"
109-
echo -A POSTROUTING -j SNAT --to-source "${EGRESS_SOURCE}"
109+
echo -A POSTROUTING -o macvlan0 -j SNAT --to-source "${EGRESS_SOURCE}"
110110
}
111111

112112
function setup_iptables() {

images/egress/router/egress_router_test.go

+9-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestEgressRouter(t *testing.T) {
2020
dest: "10.1.2.3",
2121
output: `
2222
-A PREROUTING -i eth0 -j DNAT --to-destination 10.1.2.3
23-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
23+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
2424
`,
2525
},
2626
{
@@ -29,7 +29,7 @@ func TestEgressRouter(t *testing.T) {
2929
dest: "10.1.2.3",
3030
output: `
3131
-A PREROUTING -i eth0 -j DNAT --to-destination 10.1.2.3
32-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
32+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
3333
`,
3434
},
3535
{
@@ -38,7 +38,7 @@ func TestEgressRouter(t *testing.T) {
3838
dest: "10.1.2.3",
3939
output: `
4040
-A PREROUTING -i eth0 -j DNAT --to-destination 10.1.2.3
41-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
41+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
4242
`,
4343
},
4444
{
@@ -47,7 +47,7 @@ func TestEgressRouter(t *testing.T) {
4747
dest: "10.1.2.3\n",
4848
output: `
4949
-A PREROUTING -i eth0 -j DNAT --to-destination 10.1.2.3
50-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
50+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
5151
`,
5252
},
5353
{
@@ -56,7 +56,7 @@ func TestEgressRouter(t *testing.T) {
5656
dest: "80 tcp 10.4.5.6",
5757
output: `
5858
-A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.4.5.6
59-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
59+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
6060
`,
6161
},
6262
{
@@ -65,7 +65,7 @@ func TestEgressRouter(t *testing.T) {
6565
dest: "8080 tcp 10.7.8.9 80",
6666
output: `
6767
-A PREROUTING -i eth0 -p tcp --dport 8080 -j DNAT --to-destination 10.7.8.9:80
68-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
68+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
6969
`,
7070
},
7171
{
@@ -75,7 +75,7 @@ func TestEgressRouter(t *testing.T) {
7575
output: `
7676
-A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.4.5.6
7777
-A PREROUTING -i eth0 -p tcp --dport 8080 -j DNAT --to-destination 10.7.8.9:80
78-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
78+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
7979
`,
8080
},
8181
{
@@ -86,7 +86,7 @@ func TestEgressRouter(t *testing.T) {
8686
-A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.4.5.6
8787
-A PREROUTING -i eth0 -p tcp --dport 8080 -j DNAT --to-destination 10.7.8.9:80
8888
-A PREROUTING -i eth0 -j DNAT --to-destination 10.1.2.3
89-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
89+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
9090
`,
9191
},
9292
{
@@ -115,7 +115,7 @@ func TestEgressRouter(t *testing.T) {
115115
-A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 10.4.5.6
116116
-A PREROUTING -i eth0 -p tcp --dport 8080 -j DNAT --to-destination 10.7.8.9:80
117117
-A PREROUTING -i eth0 -j DNAT --to-destination 10.1.2.3
118-
-A POSTROUTING -j SNAT --to-source 1.2.3.4
118+
-A POSTROUTING -o macvlan0 -j SNAT --to-source 1.2.3.4
119119
`,
120120
},
121121
}

pkg/network/sdn-cni-plugin/openshift-sdn.go

+30-1
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ func (p *cniPlugin) CmdAdd(args *skel.CmdArgs) error {
146146
if err != nil {
147147
return fmt.Errorf("failed to convert IPAM result: %v", err)
148148
}
149+
defaultGW := result020.IP4.Gateway
149150
result020.IP4.Gateway = nil
150151

151152
result030, err := current.NewResultFromResult(result020)
@@ -164,7 +165,7 @@ func (p *cniPlugin) CmdAdd(args *skel.CmdArgs) error {
164165
}
165166
result030.IPs[0].Interface = current.Int(0)
166167

167-
err = ns.WithNetNSPath(args.Netns, func(ns.NetNS) error {
168+
err = ns.WithNetNSPath(args.Netns, func(hostNS ns.NetNS) error {
168169
// Set up eth0
169170
if err := ip.SetHWAddrByIP(args.IfName, result030.IPs[0].Address.IP, nil); err != nil {
170171
return fmt.Errorf("failed to set pod interface MAC address: %v", err)
@@ -186,9 +187,37 @@ func (p *cniPlugin) CmdAdd(args *skel.CmdArgs) error {
186187
link, err = netlink.LinkByName("macvlan0")
187188
if err == nil {
188189
err = netlink.LinkSetUp(link)
190+
if err != nil {
191+
return fmt.Errorf("failed to enable macvlan device: %v", err)
192+
}
193+
194+
// A macvlan can't reach its parent interface's IP, so we need to
195+
// add a route to that via the SDN
196+
var addrs []netlink.Addr
197+
err = hostNS.Do(func(ns.NetNS) error {
198+
parent, err := netlink.LinkByIndex(link.Attrs().ParentIndex)
199+
if err != nil {
200+
return err
201+
}
202+
addrs, err = netlink.AddrList(parent, netlink.FAMILY_V4)
203+
return err
204+
})
189205
if err != nil {
190206
return fmt.Errorf("failed to configure macvlan device: %v", err)
191207
}
208+
for _, addr := range addrs {
209+
route := &netlink.Route{
210+
Dst: &net.IPNet{
211+
IP: addr.IP,
212+
Mask: net.CIDRMask(32, 32),
213+
},
214+
Gw: defaultGW,
215+
}
216+
err = netlink.RouteAdd(route)
217+
if err != nil {
218+
return fmt.Errorf("failed to configure macvlan device: %v", err)
219+
}
220+
}
192221
}
193222

194223
return nil

0 commit comments

Comments
 (0)