-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathexample_qdisc_replace_test.go
99 lines (87 loc) · 2.18 KB
/
example_qdisc_replace_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
//go:build linux
// +build linux
package tc_test
import (
"fmt"
"net"
"os"
"github.com/florianl/go-tc"
"github.com/florianl/go-tc/core"
"github.com/jsimonetti/rtnetlink"
"golang.org/x/sys/unix"
)
func ExampleQdisc_Replace() {
tcIface := "ExampleQdiscReplace"
rtnl, err := setupDummyInterface(tcIface)
if err != nil {
fmt.Fprintf(os.Stderr, "could not setup dummy interface: %v\n", err)
return
}
defer rtnl.Close()
devID, err := net.InterfaceByName(tcIface)
if err != nil {
fmt.Fprintf(os.Stderr, "could not get interface ID: %v\n", err)
return
}
defer func(devID uint32, rtnl *rtnetlink.Conn) {
if err := rtnl.Link.Delete(devID); err != nil {
fmt.Fprintf(os.Stderr, "could not delete interface: %v\n", err)
}
}(uint32(devID.Index), rtnl)
tcnl, err := tc.Open(&tc.Config{})
if err != nil {
fmt.Fprintf(os.Stderr, "could not open rtnetlink socket: %v\n", err)
return
}
defer func() {
if err := tcnl.Close(); err != nil {
fmt.Fprintf(os.Stderr, "could not close rtnetlink socket: %v\n", err)
}
}()
if err := addFQQdisc(tcnl, uint32(devID.Index)); err != nil {
fmt.Fprintf(os.Stderr, "failed to add fq qdisc: %v\n", err)
return
}
if err := replaceFQQdisc(tcnl, uint32(devID.Index)); err != nil {
fmt.Fprintf(os.Stderr, "failed to replace fq qdisc: %v\n", err)
return
}
}
// tc qdisc add dev ExampleQdiscReplace root handle 1: fq ce_threshold 4ms
func addFQQdisc(tcnl *tc.Tc, ifIndex uint32) error {
ceThreshold := uint32(4000)
qdisc := tc.Object{
Msg: tc.Msg{
Family: unix.AF_UNSPEC,
Ifindex: ifIndex,
Handle: core.BuildHandle(0x1, 0x0),
Parent: tc.HandleRoot,
},
Attribute: tc.Attribute{
Kind: "fq",
Fq: &tc.Fq{
CEThreshold: &ceThreshold,
},
},
}
return tcnl.Qdisc().Add(&qdisc)
}
// tc qdisc replace dev ExampleQdiscReplace root handle 1: fq limit 100
func replaceFQQdisc(tcnl *tc.Tc, ifIndex uint32) error {
limit := uint32(100)
qdisc := tc.Object{
Msg: tc.Msg{
Family: unix.AF_UNSPEC,
Ifindex: ifIndex,
Handle: core.BuildHandle(0x1, 0x0),
Parent: tc.HandleRoot,
},
Attribute: tc.Attribute{
Kind: "fq",
Fq: &tc.Fq{
PLimit: &limit,
},
},
}
return tcnl.Qdisc().Replace(&qdisc)
}