-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclient.go
264 lines (222 loc) · 6.04 KB
/
client.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
// Package client contains the OC-Daemon client.
package client
import (
"fmt"
"time"
log "github.com/sirupsen/logrus"
"github.com/telekom-mms/oc-daemon/pkg/client"
"github.com/telekom-mms/oc-daemon/pkg/vpnstatus"
"github.com/telekom-mms/oc-daemon/pkg/xmlprofile"
)
var (
// maxReconnectTries is the maximum amount or reconnect retries
maxReconnectTries = 5
// reconnectSleep is the sleep time between reconnect retries.
reconnectSleep = time.Second
)
// clientNewClient is client.NewClient for testing.
var clientNewClient = client.NewClient
// listServers gets the VPN status from the daemon and prints the VPN servers in it.
func listServers() error {
// create client
c, err := clientNewClient(config)
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
defer func() { _ = c.Close() }()
// get status
status, err := c.Query()
if err != nil {
return fmt.Errorf("error getting server list: %w", err)
}
// print servers in status
fmt.Printf("Servers:\n")
for _, server := range status.Servers {
fmt.Printf(" - \"%s\"\n", server)
}
return nil
}
// connectVPN connects to the VPN if necessary.
func connectVPN() error {
// create client
c, err := clientNewClient(config)
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
defer func() { _ = c.Close() }()
// try to read current xml profile
pre := xmlprofile.LoadSystemProfile()
// authenticate
if err := c.Authenticate(); err != nil {
return fmt.Errorf("error authenticating user for VPN: %w", err)
}
// warn user if profile changed
post := xmlprofile.LoadSystemProfile()
if !pre.Equal(post) {
time.Sleep(2 * time.Second)
log.Warnln("XML Profile was updated. Connection attempt " +
"might fail. Please, check status and reconnect " +
"if necessary.")
time.Sleep(2 * time.Second)
}
// connect
if err := c.Connect(); err != nil {
return fmt.Errorf("error connecting to VPN: %w", err)
}
return nil
}
// disconnectVPN disconnects the VPN.
func disconnectVPN() error {
// create client
c, err := clientNewClient(config)
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
defer func() { _ = c.Close() }()
// disconnect
err = c.Disconnect()
if err != nil {
return fmt.Errorf("error disconnecting from VPN: %w", err)
}
return nil
}
// reconnectVPN reconnects to the VPN.
func reconnectVPN() error {
// create client
client, err := clientNewClient(config)
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
defer func() { _ = client.Close() }()
// check status
status, err := client.Query()
if err != nil {
return fmt.Errorf("error reconnecting to VPN: %w", err)
}
// disconnect if needed
if status.OCRunning.Running() {
// send disconnect request
if err := disconnectVPN(); err != nil {
return err
}
}
// wait for status to switch to untrusted network and not running
try := 0
for {
status, err := client.Query()
if err != nil {
return fmt.Errorf("error reconnecting to VPN: %w", err)
}
if !status.TrustedNetwork.Trusted() &&
!status.ConnectionState.Connected() &&
!status.OCRunning.Running() {
// authenticate and connect
return connectVPN()
}
try++
if try >= maxReconnectTries {
// too many tries, abort
return fmt.Errorf("error reconnecting to VPN: too many tries")
}
// sleep a second before retry
time.Sleep(reconnectSleep)
}
}
// printStatus prints status on the command line.
func printStatus(status *vpnstatus.Status) error {
if json {
// print status as json
j, err := status.JSON()
if err != nil {
return err
}
fmt.Println(string(j))
return nil
}
// print status
fmt.Printf("Trusted Network: %s\n", status.TrustedNetwork)
fmt.Printf("Connection State: %s\n", status.ConnectionState)
fmt.Printf("IP: %s\n", status.IP)
fmt.Printf("Device: %s\n", status.Device)
fmt.Printf("Current Server: %s\n", status.Server)
fmt.Printf("Server IP: %s\n", status.ServerIP)
if status.ConnectedAt <= 0 {
fmt.Printf("Connected At:\n")
} else {
connectedAt := time.Unix(status.ConnectedAt, 0)
fmt.Printf("Connected At: %s\n", connectedAt)
}
fmt.Printf("Servers:\n")
for _, server := range status.Servers {
fmt.Printf(" - \"%s\"\n", server)
}
fmt.Printf("OC Running: %s\n", status.OCRunning)
// verbose output
if !verbose {
return nil
}
fmt.Printf("OC PID: %d\n", status.OCPID)
fmt.Printf("TrafPol State: %s\n", status.TrafPolState)
fmt.Printf("Allowed Hosts: %s\n", status.AllowedHosts)
fmt.Printf("TND State: %s\n", status.TNDState)
fmt.Printf("TND Servers: %s\n", status.TNDServers)
if status.VPNConfig == nil {
fmt.Printf("VPN Config:\n")
} else {
fmt.Printf("VPN Config: %+v\n", *status.VPNConfig)
}
return nil
}
// getStatus gets the VPN status from the daemon.
func getStatus() error {
// create client
c, err := clientNewClient(config)
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
defer func() { _ = c.Close() }()
// get status
status, err := c.Query()
if err != nil {
return fmt.Errorf("error getting status: %w", err)
}
// print status
return printStatus(status)
}
// dumpState dumps the internal state of the daemon.
func dumpState() error {
// create client
c, err := clientNewClient(config)
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
defer func() { _ = c.Close() }()
// get status
state, err := c.DumpState()
if err != nil {
return fmt.Errorf("error getting status: %w", err)
}
fmt.Println(state)
return nil
}
// monitor subscribes to VPN status updates from the daemon and displays them.
func monitor() error {
// create client
c, err := clientNewClient(config)
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
defer func() { _ = c.Close() }()
// get status updates
updates, err := c.Subscribe()
if err != nil {
return fmt.Errorf("error subscribing to status updates: %w", err)
}
for u := range updates {
log.Println("Got status update:")
if err := printStatus(u); err != nil {
return err
}
}
return nil
}