-
Notifications
You must be signed in to change notification settings - Fork 48
/
example_ematch_ipset_test.go
83 lines (73 loc) · 1.67 KB
/
example_ematch_ipset_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
//go:build linux
// +build linux
package tc_test
import (
"fmt"
"net"
"os"
"github.com/florianl/go-tc"
"github.com/florianl/go-tc/internal/unix"
"github.com/jsimonetti/rtnetlink"
)
func ExampleEmatch_IPSetMatch() {
tcIface := "ExampleEmatchIpset"
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)
}
}()
classID := uint32(42)
filter := tc.Object{
tc.Msg{
Family: unix.AF_UNSPEC,
Ifindex: uint32(devID.Index),
},
tc.Attribute{
Kind: "basic",
Basic: &tc.Basic{
ClassID: &classID,
Ematch: &tc.Ematch{
Hdr: &tc.EmatchTreeHdr{
NMatches: 1,
},
Matches: &[]tc.EmatchMatch{
{
Hdr: tc.EmatchHdr{
Kind: tc.EmatchIPSet,
},
IPSetMatch: &tc.IPSetMatch{
IPSetID: 1337,
Dir: []tc.IPSetDir{tc.IPSetSrc},
},
},
},
},
},
},
}
if err := tcnl.Filter().Add(&filter); err != nil {
fmt.Fprintf(os.Stderr, "could not assign filter: %v\n", err)
return
}
}