-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclient.go
599 lines (512 loc) · 14.8 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
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
// Package client contains code for OC-Daemon clients.
package client
import (
"bufio"
"bytes"
"fmt"
"os"
"os/exec"
"sync"
"github.com/godbus/dbus/v5"
"github.com/telekom-mms/oc-daemon/internal/dbusapi"
"github.com/telekom-mms/oc-daemon/pkg/logininfo"
"github.com/telekom-mms/oc-daemon/pkg/vpnconfig"
"github.com/telekom-mms/oc-daemon/pkg/vpnstatus"
)
// Client is an OC-Daemon client.
type Client interface {
SetConfig(config *Config)
GetConfig() *Config
SetEnv(env []string)
GetEnv() []string
SetLogin(login *logininfo.LoginInfo)
GetLogin() *logininfo.LoginInfo
Ping() error
Query() (*vpnstatus.Status, error)
Subscribe() (chan *vpnstatus.Status, error)
Authenticate() error
Connect() error
Disconnect() error
Close() error
}
// DBusClient is an OC-Daemon client that uses the D-Bus API of OC-Daemon.
type DBusClient struct {
mutex sync.Mutex
// config is the client configuration
config *Config
// conn is the D-Bus connection
conn *dbus.Conn
// signals is the channel for the D-Bus signals
signals chan *dbus.Signal
// env are extra environment variables set during execution of
// `openconnect --authenticate`
env []string
// login contains information required to connect to the VPN, produced
// by successful authentication
login *logininfo.LoginInfo
// subscribed specifies whether the client is subscribed to
// PropertiesChanged D-Bus signals
subscribed bool
// update is used for vpn status updates
updates chan *vpnstatus.Status
// done signals termination of the client
done chan struct{}
// closed signals termination of the client is complete
closed chan struct{}
}
// SetConfig sets the client config.
func (d *DBusClient) SetConfig(config *Config) {
d.mutex.Lock()
defer d.mutex.Unlock()
d.config = config.Copy()
}
// GetConfig returns the client config.
func (d *DBusClient) GetConfig() *Config {
d.mutex.Lock()
defer d.mutex.Unlock()
return d.config.Copy()
}
// SetEnv sets additional environment variables.
func (d *DBusClient) SetEnv(env []string) {
d.mutex.Lock()
defer d.mutex.Unlock()
d.env = append(env[:0:0], env...)
}
// GetEnv returns the additional environment variables.
func (d *DBusClient) GetEnv() []string {
d.mutex.Lock()
defer d.mutex.Unlock()
return append(d.env[:0:0], d.env...)
}
// SetLogin sets the login information.
func (d *DBusClient) SetLogin(login *logininfo.LoginInfo) {
d.mutex.Lock()
defer d.mutex.Unlock()
d.login = login.Copy()
}
// GetLogin returns the login information.
func (d *DBusClient) GetLogin() *logininfo.LoginInfo {
d.mutex.Lock()
defer d.mutex.Unlock()
return d.login.Copy()
}
// dbusConnectSystemBus calls dbus.ConnectSystemBus.
var dbusConnectSystemBus = func() (*dbus.Conn, error) {
return dbus.ConnectSystemBus()
}
// updateStatusFromProperties updates status from D-Bus properties in props.
func updateStatusFromProperties(status *vpnstatus.Status, props map[string]dbus.Variant) error {
// create a temporary status, try to set all values in temporary
// status, if we received valid properties (no type conversion or JSON
// parsing errors) set real status
temp := vpnstatus.New()
for _, dest := range []*vpnstatus.Status{temp, status} {
for k, v := range props {
var err error
switch k {
case dbusapi.PropertyTrustedNetwork:
err = v.Store(&dest.TrustedNetwork)
case dbusapi.PropertyConnectionState:
err = v.Store(&dest.ConnectionState)
case dbusapi.PropertyIP:
err = v.Store(&dest.IP)
case dbusapi.PropertyDevice:
err = v.Store(&dest.Device)
case dbusapi.PropertyServer:
err = v.Store(&dest.Server)
case dbusapi.PropertyServerIP:
err = v.Store(&dest.ServerIP)
case dbusapi.PropertyConnectedAt:
err = v.Store(&dest.ConnectedAt)
case dbusapi.PropertyServers:
err = v.Store(&dest.Servers)
case dbusapi.PropertyOCRunning:
err = v.Store(&dest.OCRunning)
case dbusapi.PropertyVPNConfig:
s := dbusapi.VPNConfigInvalid
if err := v.Store(&s); err != nil {
return err
}
if s == dbusapi.VPNConfigInvalid {
dest.VPNConfig = nil
} else {
config, err := vpnconfig.NewFromJSON([]byte(s))
if err != nil {
return err
}
dest.VPNConfig = config
}
}
if err != nil {
return err
}
}
}
return nil
}
// ping calls the ping method to check if OC-Daemon is running.
var ping = func(d *DBusClient) error {
return d.conn.Object(dbusapi.Interface, dbusapi.Path).
Call("org.freedesktop.DBus.Peer.Ping", 0).Err
}
// Ping pings the OC-Daemon to check if it is running.
func (d *DBusClient) Ping() error {
return ping(d)
}
// query retrieves the D-Bus properties from the daemon.
var query = func(d *DBusClient) (map[string]dbus.Variant, error) {
// get all properties
props := make(map[string]dbus.Variant)
if err := d.conn.Object(dbusapi.Interface, dbusapi.Path).
Call("org.freedesktop.DBus.Properties.GetAll", 0, dbusapi.Interface).
Store(props); err != nil {
return nil, err
}
// return properties
return props, nil
}
// Query retrieves the VPN status.
func (d *DBusClient) Query() (*vpnstatus.Status, error) {
// get properties
props, err := query(d)
if err != nil {
return nil, err
}
// get status from properties
status := vpnstatus.New()
if err := updateStatusFromProperties(status, props); err != nil {
return nil, err
}
// return current status
return status, nil
}
// handlePropertiesChanged handles a PropertiesChanged D-Bus signal.
func handlePropertiesChanged(s *dbus.Signal, status *vpnstatus.Status) *vpnstatus.Status {
// make sure it's a properties changed signal
if s.Path != dbusapi.Path || s.Name != dbusapi.PropertiesChanged {
return nil
}
// check properties changed signal
if v, ok := s.Body[0].(string); !ok || v != dbusapi.Interface {
return nil
}
// get changed properties, update current status
changed, ok := s.Body[1].(map[string]dbus.Variant)
if !ok {
return nil
}
err := updateStatusFromProperties(status, changed)
if err != nil {
return nil
}
// get invalidated properties
invalid, ok := s.Body[2].([]string)
if !ok {
return nil
}
for _, name := range invalid {
// not expected to happen currently, but handle it anyway
switch name {
case dbusapi.PropertyTrustedNetwork:
status.TrustedNetwork = vpnstatus.TrustedNetworkUnknown
case dbusapi.PropertyConnectionState:
status.ConnectionState = vpnstatus.ConnectionStateUnknown
case dbusapi.PropertyIP:
status.IP = dbusapi.IPInvalid
case dbusapi.PropertyDevice:
status.Device = dbusapi.DeviceInvalid
case dbusapi.PropertyServer:
status.Server = dbusapi.ServerInvalid
case dbusapi.PropertyServerIP:
status.ServerIP = dbusapi.ServerIPInvalid
case dbusapi.PropertyConnectedAt:
status.ConnectedAt = dbusapi.ConnectedAtInvalid
case dbusapi.PropertyServers:
status.Servers = dbusapi.ServersInvalid
case dbusapi.PropertyOCRunning:
status.OCRunning = vpnstatus.OCRunningUnknown
case dbusapi.PropertyVPNConfig:
status.VPNConfig = nil
}
}
return status
}
// setSubscribed tries to set subscribed to true and returns true if successful.
func (d *DBusClient) setSubscribed() bool {
d.mutex.Lock()
defer d.mutex.Unlock()
if d.subscribed {
// already subscribed
return false
}
d.subscribed = true
return true
}
// isSubscribed returns whether subscribed is set.
func (d *DBusClient) isSubscribed() bool {
d.mutex.Lock()
defer d.mutex.Unlock()
return d.subscribed
}
// connAddmatchSignal is dbus conn.AddMatchSignal for testing.
var connAddMatchSignal = func(conn *dbus.Conn, options ...dbus.MatchOption) error {
return conn.AddMatchSignal(options...)
}
// connSignal is dbus conn.Signal for testing.
var connSignal = func(conn *dbus.Conn, ch chan<- *dbus.Signal) {
conn.Signal(ch)
}
// Subscribe subscribes to PropertiesChanged D-Bus signals, converts incoming
// PropertiesChanged signals to VPN status updates and sends those updates
// over the returned channel.
func (d *DBusClient) Subscribe() (chan *vpnstatus.Status, error) {
// make sure this only runs once
if ok := d.setSubscribed(); !ok {
return nil, fmt.Errorf("already subscribed")
}
// query current status to get initial values
status, err := d.Query()
if err != nil {
return nil, err
}
// subscribe to properties changed signals
if err := connAddMatchSignal(d.conn,
dbus.WithMatchSender(dbusapi.Interface),
dbus.WithMatchInterface("org.freedesktop.DBus.Properties"),
dbus.WithMatchMember("PropertiesChanged"),
dbus.WithMatchPathNamespace(dbusapi.Path),
); err != nil {
return nil, err
}
// handle signals
connSignal(d.conn, d.signals)
// handle properties
go func() {
defer close(d.closed)
defer close(d.updates)
// send initial status
select {
case d.updates <- status.Copy():
case <-d.done:
return
}
// handle signals
for s := range d.signals {
// get status update from signal
update := handlePropertiesChanged(s, status.Copy())
if update == nil {
// invalid update
continue
}
// valid update, save it as current status
status = update.Copy()
// send status update
select {
case d.updates <- update:
case <-d.done:
return
}
}
}()
return d.updates, nil
}
// checkStatus checks if client is not connected to a trusted network and the
// VPN is not already running.
func (d *DBusClient) checkStatus() error {
status, err := d.Query()
if err != nil {
return fmt.Errorf("could not query OC-Daemon: %w", err)
}
// check if we need to start the VPN connection
if status.TrustedNetwork.Trusted() {
return fmt.Errorf("trusted network detected, nothing to do")
}
if status.ConnectionState.Connected() {
return fmt.Errorf("VPN already connected, nothing to do")
}
if status.OCRunning.Running() {
return fmt.Errorf("OpenConnect client already running, nothing to do")
}
return nil
}
// execCommand is exec.Command for testing.
var execCommand = exec.Command
// authenticate runs OpenConnect in authentication mode.
var authenticate = func(d *DBusClient) error {
// create openconnect command:
//
// openconnect \
// --protocol=anyconnect \
// --certificate="$CLIENT_CERT" \
// --sslkey="$PRIVATE_KEY" \
// --cafile="$CA_CERT" \
// --xmlconfig="$XML_CONFIG" \
// --authenticate \
// --quiet \
// "$SERVER"
//
config := d.GetConfig()
protocol := fmt.Sprintf("--protocol=%s", config.Protocol)
// some VPN servers reject connections from other clients,
// set default user agent to AnyConnect
userAgent := fmt.Sprintf("--useragent=%s", config.UserAgent)
certificate := fmt.Sprintf("--certificate=%s", config.ClientCertificate)
sslKey := fmt.Sprintf("--sslkey=%s", config.ClientKey)
mcaCertificate := fmt.Sprintf("--mca-certificate=%s", config.UserCertificate)
mcaKey := fmt.Sprintf("--mca-key=%s", config.UserKey)
caFile := fmt.Sprintf("--cafile=%s", config.CACertificate)
xmlConfig := fmt.Sprintf("--xmlconfig=%s", config.XMLProfile)
user := fmt.Sprintf("--user=%s", config.User)
parameters := []string{
protocol,
userAgent,
certificate,
sslKey,
xmlConfig,
"--authenticate",
}
if config.UserCertificate != "" {
parameters = append(parameters, mcaCertificate)
}
if config.UserKey != "" {
parameters = append(parameters, mcaKey)
}
if config.Quiet {
parameters = append(parameters, "--quiet")
}
if config.NoProxy {
parameters = append(parameters, "--no-proxy")
}
if config.CACertificate != "" {
parameters = append(parameters, caFile)
}
if config.User != "" {
parameters = append(parameters, user)
}
if config.Password != "" {
// read password from stdin and switch to non-interactive mode
parameters = append(parameters, "--passwd-on-stdin")
parameters = append(parameters, "--non-inter")
}
parameters = append(parameters, config.ExtraArgs...)
parameters = append(parameters, config.VPNServer)
command := execCommand(config.OpenConnect, parameters...)
// run command: allow user input, show stderr, buffer stdout
var b bytes.Buffer
command.Stdin = os.Stdin
if config.Password != "" {
// disable user input, pass password via stdin
command.Stdin = bytes.NewBufferString(config.Password)
}
command.Stdout = &b
command.Stderr = os.Stderr
command.Env = append(os.Environ(), config.ExtraEnv...)
command.Env = append(command.Env, d.GetEnv()...)
if err := command.Run(); err != nil {
// TODO: handle failed program start?
return err
}
// parse login info, cookie from command line in buffer:
//
// COOKIE=3311180634@13561856@1339425499@B315A0E29D16C6FD92EE...
// HOST=10.0.0.1
// CONNECT_URL='https://vpnserver.example.com'
// FINGERPRINT=469bb424ec8835944d30bc77c77e8fc1d8e23a42
// RESOLVE='vpnserver.example.com:10.0.0.1'
//
login := &logininfo.LoginInfo{}
login.Server = config.VPNServer
scanner := bufio.NewScanner(&b)
for scanner.Scan() {
line := scanner.Text()
login.ParseLine(line)
}
d.SetLogin(login)
return nil
}
// Authenticate authenticates the client on the VPN server.
func (d *DBusClient) Authenticate() error {
// check status
if err := d.checkStatus(); err != nil {
return err
}
// authenticate
return authenticate(d)
}
// connect sends a connect request with login info to the daemon.
var connect = func(d *DBusClient) error {
// call connect
login := d.GetLogin()
return d.conn.Object(dbusapi.Interface, dbusapi.Path).
Call(dbusapi.MethodConnect, 0,
login.Server,
login.Cookie,
login.Host,
login.ConnectURL,
login.Fingerprint,
login.Resolve,
).Store()
}
// Connect connects the client with the VPN server, requires successful
// authentication with Authenticate.
func (d *DBusClient) Connect() error {
// check status
if err := d.checkStatus(); err != nil {
return err
}
// send login info to daemon
return connect(d)
}
// disconnect sends a disconnect request to the daemon.
var disconnect = func(d *DBusClient) error {
// call connect
return d.conn.Object(dbusapi.Interface, dbusapi.Path).
Call(dbusapi.MethodDisconnect, 0).Store()
}
// Disconnect disconnects the client from the VPN server.
func (d *DBusClient) Disconnect() error {
// check status
status, err := d.Query()
if err != nil {
return fmt.Errorf("could not query OC-Daemon: %w", err)
}
if !status.OCRunning.Running() {
return fmt.Errorf("OpenConnect client is not running, nothing to do")
}
// disconnect
return disconnect(d)
}
// Close closes the DBusClient.
func (d *DBusClient) Close() error {
var err error
if d.conn != nil {
err = d.conn.Close()
}
if d.isSubscribed() {
close(d.done)
<-d.closed
}
return err
}
// NewDBusClient returns a new DBusClient.
func NewDBusClient(config *Config) (*DBusClient, error) {
// connect to system bus
conn, err := dbusConnectSystemBus()
if err != nil {
return nil, err
}
// create client
client := &DBusClient{
config: config,
conn: conn,
signals: make(chan *dbus.Signal, 10),
updates: make(chan *vpnstatus.Status),
done: make(chan struct{}),
closed: make(chan struct{}),
}
return client, nil
}
// NewClient returns a new Client.
func NewClient(config *Config) (Client, error) {
return NewDBusClient(config)
}