forked from nklizhe/ovpnutil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanagement.go
More file actions
708 lines (608 loc) · 13.8 KB
/
management.go
File metadata and controls
708 lines (608 loc) · 13.8 KB
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
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
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
}
// Status openvpn
type Status struct {
Clients []Client
Routing []Route
GlobalStats GlobalStats
}
// GlobalStats
type GlobalStats struct {
Queue string
}
// Client represent an openvpn status user
type Client struct {
VirtualIP string
RealIP string
CommonName string
BytesReceived string
BytesSent string
ConnectedSince string
}
func ParseClient(line string) (Client, error) {
fields := strings.Split(line, ",")
if len(fields) < 5 {
return Client{}, ErrNotEnoughFields
}
return Client{
VirtualIP: strings.Trim(fields[0], " "),
RealIP: strings.Trim(fields[1], " "),
CommonName: strings.Trim(fields[0], " "),
BytesReceived: strings.Trim(fields[2], " "),
BytesSent: strings.Trim(fields[3], " "),
ConnectedSince: strings.Trim(fields[4], " "),
}, nil
}
// Routing table
type Route struct {
VirtualIP string
RealIP string
CommonName string
LastRef string
}
func (r *Route) VirtualIsIPv4() bool {
return isIPv4(r.VirtualIP)
}
func (r *Route) VirtualIsIPv6() bool {
return isIPv6(r.VirtualIP)
}
func (r *Route) RealIsIPv4() bool {
return isIPv4(r.VirtualIP)
}
func (r *Route) RealIsIPv6() bool {
return isIPv6(r.VirtualIP)
}
func ParseRoute(line string) (Route, error) {
fields := strings.Split(line, ",")
if len(fields) < 4 {
return Route{}, ErrNotEnoughFields
}
return Route{
VirtualIP: strings.Trim(fields[0], " "),
RealIP: strings.Trim(fields[2], " "),
CommonName: strings.Trim(fields[1], " "),
LastRef: strings.Trim(fields[3], " "),
}, 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)
GetStatus() (Status, error)
GetClients() ([]Client, error)
GetRouting() ([]Route, error)
GetGlobalStats() (GlobalStats, 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, t string) (Controller, error) {
conn, err := net.Dial(t, 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.Close()
}
}
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
}
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) GetStatus() (Status, error) {
if c.conn == nil {
return Status{}, ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
if _, err := c.conn.Write([]byte("status\n")); err != nil {
return Status{}, err
}
// read output
var status Status
var parseClient = false
var parseRoute = false
var parseGlobalStats = false
var clients []Client
var routing []Route
var stats GlobalStats
for {
select {
case line := <-c.output:
if line == "END" {
status.GlobalStats = stats
status.Clients = clients
status.Routing = routing
return status, nil
}
if line == "Common Name,Real Address,Bytes Received,Bytes Sent,Connected Since" {
parseClient = true
continue
}
if line == "ROUTING TABLE" {
parseClient = false
}
if line == "Virtual Address,Common Name,Real Address,Last Ref" {
parseRoute = true
continue
}
if line == "GLOBAL STATS" {
parseRoute = false
parseGlobalStats = true
continue
}
if parseClient {
client, err := ParseClient(line)
if err != nil {
return status, err
}
clients = append(clients, client)
continue
}
if parseRoute {
route, err := ParseRoute(line)
if err != nil {
return status, err
}
routing = append(routing, route)
continue
}
if parseGlobalStats {
if strings.HasPrefix(line, "Max bcast/mcast queue length") {
fields := strings.Split(line, ",")
if len(fields) < 2 {
continue
}
stats.Queue = strings.Trim(fields[1], " ")
}
}
case <-time.After(time.Duration(100) * time.Millisecond):
return Status{}, ErrReadTimeout
case <-c.closed:
return Status{}, ErrClosed
}
}
}
func (c *defaultController) GetClients() ([]Client, error) {
if c.conn == nil {
return nil, ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
if _, err := c.conn.Write([]byte("status\n")); err != nil {
return nil, err
}
// read output
var clients []Client
var startParse = false
for {
select {
case line := <-c.output:
if line == "ROUTING TABLE" {
return clients, nil
}
if line == "Common Name,Real Address,Bytes Received,Bytes Sent,Connected Since" {
startParse = true
continue
}
if !startParse {
continue
}
client, err := ParseClient(line)
if err != nil {
return nil, err
}
clients = append(clients, client)
case <-time.After(time.Duration(100) * time.Millisecond):
return nil, ErrReadTimeout
case <-c.closed:
return nil, ErrClosed
}
}
}
func (c *defaultController) GetRouting() ([]Route, error) {
if c.conn == nil {
return nil, ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
if _, err := c.conn.Write([]byte("status\n")); err != nil {
return nil, err
}
// read output
var routing []Route
var startParse = false
for {
select {
case line := <-c.output:
if line == "GLOBAL STATS" {
return routing, nil
}
if line == "Virtual Address,Common Name,Real Address,Last Ref" {
startParse = true
continue
}
if !startParse {
continue
}
route, err := ParseRoute(line)
if err != nil {
return nil, err
}
routing = append(routing, route)
case <-time.After(time.Duration(5) * time.Second):
return nil, ErrReadTimeout
case <-c.closed:
return nil, ErrClosed
}
}
}
func (c *defaultController) GetGlobalStats() (GlobalStats, error) {
if c.conn == nil {
return GlobalStats{}, ErrNotConnected
}
c.mutex.Lock()
defer c.mutex.Unlock()
// send command
if _, err := c.conn.Write([]byte("status\n")); err != nil {
return GlobalStats{}, err
}
// read output
var stats GlobalStats
var startParse bool
for {
select {
case line := <-c.output:
if line == "END" {
return stats, nil
}
if line == "GLOBAL STATS" {
startParse = true
continue
}
if !startParse {
continue
}
if strings.HasPrefix(line, "Max bcast/mcast queue length") {
fields := strings.Split(line, ",")
if len(fields) < 2 {
continue
}
stats.Queue = strings.Trim(fields[1], " ")
}
case <-time.After(time.Duration(100) * time.Millisecond):
return GlobalStats{}, ErrReadTimeout
case <-c.closed:
return GlobalStats{}, 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
}
}