forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.go
92 lines (82 loc) · 2.09 KB
/
class.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
package tc
import (
"fmt"
"github.com/florianl/go-tc/internal/unix"
"github.com/mdlayher/netlink"
)
// Class represents the class part of rtnetlink
type Class struct {
Tc
}
// Class allows to read and alter classes
func (tc *Tc) Class() *Class {
return &Class{*tc}
}
// Add creats a new class
func (c *Class) Add(info *Object) error {
if info == nil {
return ErrNoArg
}
options, err := validateClassObject(unix.RTM_NEWTCLASS, info)
if err != nil {
return err
}
return c.action(unix.RTM_NEWTCLASS, netlink.Create|netlink.Excl, &info.Msg, options)
}
// Replace add/remove a class. If the node does not exist yet it is created
func (c *Class) Replace(info *Object) error {
if info == nil {
return ErrNoArg
}
options, err := validateClassObject(unix.RTM_NEWTCLASS, info)
if err != nil {
return err
}
return c.action(unix.RTM_NEWTCLASS, netlink.Create, &info.Msg, options)
}
// Delete removes a class
func (c *Class) Delete(info *Object) error {
if info == nil {
return ErrNoArg
}
options, err := validateClassObject(unix.RTM_DELTCLASS, info)
if err != nil {
return err
}
return c.action(unix.RTM_DELTCLASS, netlink.HeaderFlags(0), &info.Msg, options)
}
// Get fetches all classes
func (c *Class) Get(i *Msg) ([]Object, error) {
if i == nil {
return []Object{}, ErrNoArg
}
return c.get(unix.RTM_GETTCLASS, i)
}
func validateClassObject(action int, info *Object) ([]tcOption, error) {
options := []tcOption{}
if info.Ifindex == 0 {
return options, ErrInvalidDev
}
// TODO: improve logic and check combinations
var data []byte
var err error
switch info.Kind {
case "hfsc":
data, err = marshalHfsc(info.Hfsc)
case "qfq":
data, err = marshalQfq(info.Qfq)
case "htb":
data, err = marshalHtb(info.Htb)
default:
return options, fmt.Errorf("%s: %w", info.Kind, ErrNotImplemented)
}
if err != nil {
return options, err
}
if len(data) < 1 {
return options, ErrNoArg
}
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaOptions, Data: data})
options = append(options, tcOption{Interpretation: vtString, Type: tcaKind, Data: info.Kind})
return options, nil
}