-
Notifications
You must be signed in to change notification settings - Fork 4
/
management.go
395 lines (350 loc) · 7.97 KB
/
management.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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
package ovpnutil
import (
"bufio"
"errors"
"fmt"
"log"
"net"
"os"
"regexp"
"strconv"
"strings"
"sync"
"time"
)
var (
ErrNotConnected = errors.New("not connected")
ErrNoMatch = errors.New("no match")
ErrReadTimeout = errors.New("read timeout")
ErrClosed = errors.New("closed")
ErrNotEnoughFields = errors.New("not enough fields")
ErrInvalidData = errors.New("invalid data")
rePid = regexp.MustCompile(`.*pid=(\d+)`)
)
// A Signal is a number describing a process signal. It implements os.Signal interface.
type Signal int
func (s Signal) Signal() {
}
func (s Signal) String() string {
switch s {
case SIGHUP:
return "SIGHUP"
case SIGUSER1:
return "SIGUSER1"
case SIGUSER2:
return "SIGUSER2"
case SIGTERM:
return "SIGTERM"
}
return ""
}
// List of signals can be used in the openvpn management interface
const (
SIGHUP = Signal(0x1)
SIGUSER1 = Signal(0xa)
SIGUSER2 = Signal(0xc)
SIGTERM = Signal(0xf)
)
// State represent an openvpn state
type State struct {
Time time.Time
Name string
Description string
LocalIP string
RemoteIP string
}
func ParseState(line string) (State, error) {
fields := strings.Split(line, ",")
if len(fields) < 5 {
return State{}, ErrNotEnoughFields
}
t, err := strconv.ParseInt(fields[0], 0, 32)
if err != nil {
return State{}, err
}
return State{
Time: time.Unix(t, 0),
Name: strings.Trim(fields[1], " "),
Description: strings.Trim(fields[2], " "),
LocalIP: strings.Trim(fields[3], " "),
RemoteIP: strings.Trim(fields[4], " "),
}, nil
}
// Controller controls openvpn process via its management interface
type Controller interface {
Signal(sig os.Signal) error
Close()
Getpid() (int, error)
GetLogs() (string, error)
GetStates() ([]State, error)
SubscribeState(ch chan State) error
SubscribeByteCount(chIn, chOut chan int64) error
SubscribeLog(ch chan string) error
}
// Dial connects to an openvpn management interface and returns a Controller
func Dial(addr string) (Controller, error) {
conn, err := net.Dial("tcp", addr)
if err != nil {
return nil, err
}
return newDefaultController(conn), nil
}
type defaultController struct {
closed chan bool
output chan string
conn net.Conn
mutex sync.Mutex
statsSubscribers []chan State
byteInSubscribers []chan int64
byteOutSubscribers []chan int64
logSubscribers []chan string
}
func newDefaultController(conn net.Conn) *defaultController {
controller := &defaultController{
conn: conn,
closed: make(chan bool),
output: make(chan string, 100),
}
go controller.listen()
return controller
}
func (c *defaultController) Signal(sig os.Signal) error {
if c.conn == nil {
return ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
cmd := fmt.Sprintf("signal %s\n", sig.String())
if _, err := c.conn.Write([]byte(cmd)); err != nil {
return err
}
return nil
}
func (c *defaultController) Close() {
c.mutex.Lock()
defer c.mutex.Unlock()
if c.conn != nil {
c.conn.Write([]byte("exit\n"))
}
}
func (c *defaultController) Getpid() (int, error) {
if c.conn == nil {
return 0, ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
if _, err := c.conn.Write([]byte("pid\n")); err != nil {
return 0, err
}
// read output
select {
case line := <-c.output:
matches := rePid.FindStringSubmatch(line)
log.Print(matches)
if len(matches) == 0 {
return 0, ErrNoMatch
}
pid, err := strconv.ParseInt(matches[1], 10, 32)
if err != nil {
return 0, err
}
return int(pid), nil
case <-time.After(time.Duration(1) * time.Second):
return 0, ErrReadTimeout
case <-c.closed:
return 0, ErrClosed
}
}
func (c *defaultController) GetLogs() (string, error) {
if c.conn == nil {
return "", ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
if _, err := c.conn.Write([]byte("log all\n")); err != nil {
return "", err
}
// read output
var logs []string
for {
select {
case line := <-c.output:
if strings.HasPrefix(line, "END") {
return strings.Join(logs, "\n"), nil
}
fmt.Print(line)
logs = append(logs, line)
continue
case <-time.After(time.Duration(1000) * time.Millisecond):
return "", ErrReadTimeout
case <-c.closed:
return "", ErrClosed
}
}
}
func (c *defaultController) GetStates() ([]State, error) {
if c.conn == nil {
return nil, ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
if _, err := c.conn.Write([]byte("state all\n")); err != nil {
return nil, err
}
// read output
var states []State
for {
select {
case line := <-c.output:
if line == "END" {
return states, nil
}
st, err := ParseState(line)
if err != nil {
return nil, err
}
states = append(states, st)
case <-time.After(time.Duration(100) * time.Millisecond):
return nil, ErrReadTimeout
case <-c.closed:
return nil, ErrClosed
}
}
}
func (c *defaultController) SubscribeState(ch chan State) error {
c.mutex.Lock()
defer c.mutex.Unlock()
c.statsSubscribers = append(c.statsSubscribers, ch)
// send command
if _, err := c.conn.Write([]byte("state on\n")); err != nil {
return err
}
// read output
select {
case line := <-c.output:
if !strings.HasPrefix(line, "SUCCESS:") {
return errors.New(line)
}
case <-time.After(time.Duration(100) * time.Millisecond):
return ErrReadTimeout
case <-c.closed:
return ErrClosed
}
return nil
}
func (c *defaultController) SubscribeByteCount(chIn, chOut chan int64) error {
c.mutex.Lock()
defer c.mutex.Unlock()
c.byteInSubscribers = append(c.byteInSubscribers, chIn)
c.byteOutSubscribers = append(c.byteOutSubscribers, chOut)
// send command
if _, err := c.conn.Write([]byte("bytecount 1\n")); err != nil {
return err
}
// read output
select {
case line := <-c.output:
if !strings.HasPrefix(line, "SUCCESS:") {
return errors.New(line)
}
case <-time.After(time.Duration(100) * time.Millisecond):
return ErrReadTimeout
case <-c.closed:
return ErrClosed
}
return nil
}
func (c *defaultController) SubscribeLog(ch chan string) error {
c.mutex.Lock()
defer c.mutex.Unlock()
c.logSubscribers = append(c.logSubscribers, ch)
// send command
if _, err := c.conn.Write([]byte("log on\n")); err != nil {
return err
}
// read output
select {
case line := <-c.output:
if !strings.HasPrefix(line, "SUCCESS:") {
return errors.New(line)
}
case <-time.After(time.Duration(100) * time.Millisecond):
return ErrReadTimeout
case <-c.closed:
return ErrClosed
}
return nil
}
func (c *defaultController) close() {
c.closed <- true
close(c.output)
}
func (c *defaultController) listen() {
rd := bufio.NewReader(c.conn)
for {
line, err := rd.ReadString('\n')
if err != nil {
c.close()
return
}
line = strings.Trim(line, "\n\r")
if strings.HasPrefix(line, ">INFO:") {
// ignore all INFO response
continue
}
if strings.HasPrefix(line, ">BYTECOUNT:") {
// process byte count
if len(c.byteInSubscribers) == 0 || len(c.byteOutSubscribers) == 0 {
continue
}
nums := strings.Split(line[len(">BYTECOUNT: "):], ",")
if len(nums) > 1 {
bytesIn, err := strconv.ParseInt(nums[0], 10, 64)
if err != nil {
continue
}
bytesOut, err := strconv.ParseInt(nums[1], 10, 64)
if err != nil {
continue
}
for _, ch := range c.byteInSubscribers {
ch <- bytesIn
}
for _, ch := range c.byteOutSubscribers {
ch <- bytesOut
}
}
continue
}
if strings.HasPrefix(line, ">STATE:") {
// handle state
if len(c.statsSubscribers) == 0 {
continue
}
st, err := ParseState(line[len(">STATE: "):])
if err == nil {
for _, ch := range c.statsSubscribers {
ch <- st
}
}
continue
}
if strings.HasPrefix(line, ">LOG:") {
// handle logs
if len(c.logSubscribers) == 0 {
continue
}
l := line[len(">LOG: "):]
for _, ch := range c.logSubscribers {
ch <- l
}
continue
}
// add to output
c.output <- line
}
}