-
Notifications
You must be signed in to change notification settings - Fork 14
/
pf.go
180 lines (162 loc) · 4.38 KB
/
pf.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
package pf
import (
"fmt"
"time"
"unsafe"
)
// #include <sys/ioctl.h>
// #include <net/if.h>
// #include <net/pfvar.h>
import "C"
// Handle to the pf kernel module using ioctl
type Handle struct {
// Anchor root anchor (ruleset without anchor)
Anchor
}
// Open pf ioctl dev
func Open() (*Handle, error) {
dev, err := newIoctlDev("/dev/pf")
if err != nil {
return nil, err
}
h := &Handle{
Anchor: Anchor{ioctlDev: dev, Path: ""},
}
return h, nil
}
// SetStatusInterface sets the status interface(s) for pf
// usually that is something like pflog0. The device needs
// to be created before using interface cloning.
func (h Handle) SetStatusInterface(dev string) error {
var pi C.struct_pfioc_if
err := cStringCopy(unsafe.Pointer(&pi.ifname), dev, C.IFNAMSIZ)
if err != nil {
return err
}
err = h.ioctl(C.DIOCSETSTATUSIF, unsafe.Pointer(&pi))
if err != nil {
return fmt.Errorf("DIOCSETSTATUSIF: %s", err)
}
return nil
}
// StatusInterface returns the currently configured status
// interface or an error.
func (h Handle) StatusInterface() (string, error) {
var pi C.struct_pfioc_if
err := h.ioctl(C.DIOCSETSTATUSIF, unsafe.Pointer(&pi))
if err != nil {
return "", fmt.Errorf("DIOCSETSTATUSIF: %s", err)
}
return C.GoString(&(pi.ifname[0])), nil
}
// Start the packet filter.
func (h Handle) Start() error {
err := h.ioctl(C.DIOCSTART, nil)
if err != nil {
return fmt.Errorf("DIOCSTART: %s", err)
}
return nil
}
// Stop the packet filter
func (h Handle) Stop() error {
err := h.ioctl(C.DIOCSTOP, nil)
if err != nil {
return fmt.Errorf("DIOCSTOP: %s", err)
}
return nil
}
// UpdateStatistics of the packet filter
func (h Handle) UpdateStatistics(stats *Statistics) error {
err := h.ioctl(C.DIOCGETSTATUS, unsafe.Pointer(stats))
if err != nil {
return fmt.Errorf("DIOCGETSTATUS: %s", err)
}
return nil
}
// SetDebugMode of the packetfilter
func (h Handle) SetDebugMode(mode DebugMode) error {
level := C.u_int32_t(mode)
err := h.ioctl(C.DIOCSETDEBUG, unsafe.Pointer(&level))
if err != nil {
return fmt.Errorf("DIOCSETDEBUG: %s", err)
}
return nil
}
// ClearPerRuleStats clear per-rule statistics
func (h Handle) ClearPerRuleStats() error {
err := h.ioctl(C.DIOCCLRRULECTRS, nil)
if err != nil {
return fmt.Errorf("DIOCCLRRULECTRS: %s", err)
}
return nil
}
// ClearPFStats clear the internal packet filter statistics
func (h Handle) ClearPFStats() error {
err := h.ioctl(C.DIOCCLRSTATUS, nil)
if err != nil {
return fmt.Errorf("DIOCCLRSTATUS: %s", err)
}
return nil
}
// ClearSourceNodes clear the tree of source tracking nodes
func (h Handle) ClearSourceNodes() error {
err := h.ioctl(C.DIOCCLRSRCNODES, nil)
if err != nil {
return fmt.Errorf("DIOCCLRSRCNODES: %s", err)
}
return nil
}
// SetHostID set the host ID, which is used by pfsync to identify
// which host created state table entries.
func (h Handle) SetHostID(id uint32) error {
hostid := C.u_int32_t(id)
err := h.ioctl(C.DIOCSETHOSTID, unsafe.Pointer(&hostid))
if err != nil {
return fmt.Errorf("DIOCSETHOSTID : %s", err)
}
return nil
}
// SetTimeout set the state timeout to specified duration
func (h Handle) SetTimeout(t Timeout, d time.Duration) error {
var tm C.struct_pfioc_tm
tm.timeout = C.int(t)
tm.seconds = C.int(d / time.Second)
err := h.ioctl(C.DIOCSETTIMEOUT, unsafe.Pointer(&tm))
if err != nil {
return fmt.Errorf("DIOCSETTIMEOUT: %s", err)
}
return nil
}
// Limit returns the currently configured limit for the memory pool
func (h Handle) Limit(l Limit) (uint, error) {
var lm C.struct_pfioc_limit
lm.index = C.int(l)
err := h.ioctl(C.DIOCGETLIMIT, unsafe.Pointer(&lm))
if err != nil {
return uint(0), fmt.Errorf("DIOCGETLIMIT: %s", err)
}
return uint(lm.limit), nil
}
// SetLimit sets hard limits on the memory pools used by the packet filter
func (h Handle) SetLimit(l Limit, limit uint) error {
var lm C.struct_pfioc_limit
lm.index = C.int(l)
lm.limit = C.uint(limit)
err := h.ioctl(C.DIOCSETLIMIT, unsafe.Pointer(&lm))
if err != nil {
return fmt.Errorf("DIOCSETLIMIT: %s", err)
}
return nil
}
// Timeout returns the currently configured timeout duration
func (h Handle) Timeout(t Timeout) (time.Duration, error) {
var tm C.struct_pfioc_tm
var d time.Duration
tm.timeout = C.int(t)
err := h.ioctl(C.DIOCGETTIMEOUT, unsafe.Pointer(&tm))
if err != nil {
return d, fmt.Errorf("DIOCGETTIMEOUT: %s", err)
}
d = time.Duration(int(tm.seconds)) * time.Second
return d, nil
}