Skip to content

Commit df30173

Browse files
authored
Merge pull request #399 from hhyasdf/release/v0.8.6
[CHERRY PICK] release for v0.8.6
2 parents f9fbe83 + ae2ec47 commit df30173

File tree

3 files changed

+62
-2
lines changed

3 files changed

+62
-2
lines changed

Dockerfile.amd64

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ RUN apk add --no-cache --allow-untrusted \
9090
iptables \
9191
ip6tables \
9292
iproute2 \
93+
iproute2-tc \
9394
ipset \
9495
conntrack-tools \
9596
curl \

Dockerfile.arm64

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ RUN apk add --no-cache --allow-untrusted \
9090
iptables \
9191
ip6tables \
9292
iproute2 \
93+
iproute2-tc \
9394
ipset \
9495
conntrack-tools \
9596
curl \

pkg/daemon/vxlan/vxlan.go

+60-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@
1717
package vxlan
1818

1919
import (
20+
"bytes"
21+
"errors"
2022
"fmt"
2123
"net"
2224
"syscall"
2325
"time"
2426

27+
"os/exec"
28+
2529
"github.com/alibaba/hybridnet/pkg/constants"
2630

2731
daemonutils "github.com/alibaba/hybridnet/pkg/daemon/utils"
@@ -30,7 +34,7 @@ import (
3034
)
3135

3236
var (
33-
broadcastFdbMac, _ = net.ParseMAC("00:00:00:00:00:00")
37+
broadcastFdbMac, _ = net.ParseMAC("FF:FF:FF:FF:FF:F1")
3438
)
3539

3640
type Device struct {
@@ -98,6 +102,10 @@ func NewVxlanDevice(name string, vxlanID int, parent string, localAddr net.IP, p
98102
}
99103
}
100104

105+
if err = ensureTCRules(link); err != nil {
106+
return nil, fmt.Errorf("failed to ensure tc rules: %v", err)
107+
}
108+
101109
return &Device{
102110
link: link,
103111
remoteIPToMacMap: map[string]net.HardwareAddr{},
@@ -214,7 +222,7 @@ func ensureLink(vxlan *netlink.Vxlan) (*netlink.Vxlan, error) {
214222
return nil, fmt.Errorf("created vxlan device with index %v is not vxlan", ifIndex)
215223
}
216224

217-
if err := netlink.LinkSetUp(link); err != nil {
225+
if err = netlink.LinkSetUp(link); err != nil {
218226
return nil, fmt.Errorf("failed to set link %v up: %v", link.Attrs().Name, err)
219227
}
220228

@@ -270,3 +278,53 @@ func vxlanLinksIncompat(l1, l2 netlink.Link) string {
270278

271279
return ""
272280
}
281+
282+
func ensureTCRules(link *netlink.Vxlan) error {
283+
// Ensure egress root qdisc for vxlan interface, need a classful qdisc for pedit action.
284+
if err := netlink.QdiscReplace(netlink.NewPrio(
285+
netlink.QdiscAttrs{
286+
LinkIndex: link.Index,
287+
Parent: netlink.HANDLE_ROOT,
288+
})); err != nil {
289+
return fmt.Errorf("failed to ensure root qdisc for vxlan interface: %v", err)
290+
}
291+
292+
qdiscs, err := netlink.QdiscList(link)
293+
if err != nil {
294+
return fmt.Errorf("failed to list qdisc for vxlan interface: %v", err)
295+
}
296+
297+
var rootQdisc netlink.Qdisc
298+
for _, item := range qdiscs {
299+
if item.Attrs().Parent == netlink.HANDLE_ROOT {
300+
rootQdisc = item
301+
}
302+
}
303+
304+
tcPath, err := exec.LookPath("tc")
305+
if err != nil {
306+
return fmt.Errorf("tc command not found: %v", err)
307+
}
308+
309+
var stderr bytes.Buffer
310+
var stdout bytes.Buffer
311+
312+
// This filter will transform multicast/broadcast dst mac addresses (of witch the last bit of the first byte is 1) to broadcastFdbMac.
313+
// TODO: tc filter replace command seems not upgrade filter while command changed
314+
runCmd := exec.Cmd{
315+
Path: tcPath,
316+
Args: append([]string{tcPath},
317+
// "tc filter replace dev eth0.vxlan4 parent 8001: handle 800::800 prio 1 u32 match u8 0x01 0x01 at -14 action pedit ex munge eth dst set ff:ff:ff:ff:ff:f1"
318+
"filter", "replace", "dev", link.Name, "parent", netlink.HandleStr(rootQdisc.Attrs().Handle),
319+
"handle", "800::800", "prio", "1", "u32", "match", "u8", "0x01", "0x01", "at", "-14",
320+
"action", "pedit", "ex", "munge", "eth", "dst", "set", broadcastFdbMac.String()),
321+
Stderr: &stderr,
322+
Stdout: &stdout,
323+
}
324+
325+
if err = runCmd.Run(); err != nil {
326+
return fmt.Errorf("failed to exec %v: %v", runCmd.String(), errors.New(stdout.String()+"\n"+stderr.String()))
327+
}
328+
329+
return nil
330+
}

0 commit comments

Comments
 (0)