-
Notifications
You must be signed in to change notification settings - Fork 9
/
ipset.go
executable file
·239 lines (203 loc) · 6.4 KB
/
ipset.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
// Copyright 2020 Kiyon Lin All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package ipset is a library providing a wrapper to the iptables
// ipset user space utility.
package ipset
import (
"bytes"
"errors"
"fmt"
"io"
"os/exec"
"regexp"
)
// Version of current package
const Version = "0.1.0"
const minMajorVersion = 6
var (
ipsetPath string
// ErrNotFound is returned if there is no ipset found in os path
ErrNotFound = errors.New("ipset utility not found")
// ErrVersionNotSupported is returned if ipset's version is not bigger than v6.0
ErrVersionNotSupported = errors.New("ipset utility version is not supported, requiring version >= 6.0")
)
var (
execCommand = exec.Command
execLookPath = exec.LookPath
)
// IPSet is abstract of ipset
type IPSet interface {
// List dumps header data and the entries for the set to an
// *Info instance. The Resolve option can be used to force
// action lookups(which may be slow).
List(options ...Option) (*Info, error)
// List dumps header data and the entries for the set to the
// specific file. The Resolve option can be used to force
// action lookups(which may be slow).
ListToFile(filename string, options ...Option) error
// Name returns the set's name
Name() string
// Rename the set's action and the new action must not exist.
Rename(newName string) error
// Add adds a given entry to the set. If the Exist option is
// specified, ipset ignores the error if the entry already
// added to the set.
Add(entry string, options ...Option) error
// Del deletes an entry from a set. If the Exist option is
// specified and the entry is not in the set (maybe already
// expired), then the command ignores the error.
Del(entry string, options ...Option) error
// Test tests whether an entry is in a set or not.
Test(entry string) (bool, error)
// Flush flushed all entries from the the set.
Flush() error
// Destroy removes the set from kernel.
Destroy() error
// Save dumps the set data to a io.Reader in a format that restore
// can read.
Save(options ...Option) (io.Reader, error)
// SaveToFile dumps the set data to s specific file in a format
// that restore can read.
SaveToFile(filename string, options ...Option) error
// Restore restores a saved session from io.Reader generated by
// save. Set exist to true to ignore exist error.
Restore(r io.Reader, exist ...bool) error
// RestoreFromFile restores a saved session from a specific file
// generated by save. Set exist to true to ignore exist error.
RestoreFromFile(filename string, exist ...bool) error
}
// New create a set identified with setname and specified type.
// The type may require type specific options. If the Exist
// option is specified, ipset ignores the error when the same set
// (setname and create parameters are identical) already exists.
func New(name string, setType SetType, options ...Option) (IPSet, error) {
c := getCmd(_create, name, setType, string(setType))
defer putCmd(c)
if err := c.exec(options...); err != nil {
return nil, err
}
return &set{name, setType}, nil
}
// Flush all entries from the specified set or flush all sets if none
// is given.
func Flush(names ...string) error {
if len(names) > 0 {
for _, name := range names {
if err := flush(name); err != nil {
return err
}
}
return nil
}
return flushAll()
}
// flush flushes specific set
func flush(name string) error {
if out, err := execCommand(ipsetPath, _flush, name).
CombinedOutput(); err != nil {
return fmt.Errorf("ipset: can't flush set %s: %s", name, out)
}
return nil
}
// flushAll flushes all set
func flushAll() error {
if out, err := execCommand(ipsetPath, _flush).
CombinedOutput(); err != nil {
return fmt.Errorf("ipset: can't flush all set: %s", out)
}
return nil
}
// Destroy removes the specified set or all the sets if none is given.
// If the set has got reference(s), nothing is done and no set destroyed.
func Destroy(names ...string) error {
if len(names) > 0 {
for _, name := range names {
if err := destroy(name); err != nil {
return err
}
}
return nil
}
return destroyAll()
}
// destroy removes specific set
func destroy(name string) error {
if out, err := execCommand(ipsetPath, _destroy, name).
CombinedOutput(); err != nil {
return fmt.Errorf("ipset: can't destroy set %s: %s", name, out)
}
return nil
}
// destroyAll removes all set
func destroyAll() error {
if out, err := execCommand(ipsetPath, _destroy).
CombinedOutput(); err != nil {
return fmt.Errorf("ipset: can't destroy all set: %s", out)
}
return nil
}
// Swap swaps the content of two sets, or in another words,
// exchange the action of two sets. The referred sets must
// exist and compatible type of sets can be swapped only.
func Swap(from, to string) error {
if out, err := execCommand(ipsetPath, _swap, from, to).
CombinedOutput(); err != nil {
return fmt.Errorf("ipset: can't swap from %s to %s: %s", from, to, out)
}
return nil
}
//Check checks whether there is an ipset command in the system.
// If so, check if the version is legal.
func Check() error {
if ipsetPath != "" {
return nil
}
path, err := execLookPath("ipset")
if err != nil {
return ErrNotFound
}
ipsetPath = path
var supported bool
if supported, err = isSupported(); err != nil {
return fmt.Errorf("ipset: can't check version : %s", err)
}
if supported {
return nil
}
return ErrVersionNotSupported
}
func isSupported() (bool, error) {
out, err := execCommand(ipsetPath, _version).
CombinedOutput()
if err == nil {
return getMajorVersion(out) >= minMajorVersion, nil
}
return false, err
}
func getMajorVersion(version []byte) int {
vVer := regexp.MustCompile(" v\\d+(\\.\\d+)+").Find(version)
if vVer == nil {
return 0
}
dotIndex := bytes.IndexByte(vVer, '.')
var majorVersion int
for i := 2; i < dotIndex; i++ {
if c := vVer[i]; c >= '0' && c <= '9' {
majorVersion = majorVersion*10 + int(c-'0')
} else {
return 0
}
}
return majorVersion
}