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
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
|
// package main implements the main exported API to be used by other languages
//
// Some notes:
//
// - Errors are returned as JSON c strings. The JSON type is defined in types/error/error.go Error. Free them using FreeString. Same is the case for other string types, you should also free them. The errors are always localized
//
// - Types are converted from the Go representation to C using JSON strings
//
// - Cookies are used for cancellation, just fancy contexts. Create a cookie using `CookieNew`, pass it to the function that needs one as the first argument. To cancel the function, call `CookieCancel`, passing in the same cookie as argument
//
// - Cookies must also be freed, by using the CookieDelete function if the cookie is no longer needed
//
// - The state machine is used to track the state of a client. It is mainly used for asking for certain data from the client, e.g. asking for profiles and locations. But a client may also wish to build upon this state machine to build the whole UI around it. The SetState and InState functions are useful for this
package main
/*
#include <stdint.h>
#include <stdlib.h>
typedef long long int (*ReadRxBytes)();
typedef int (*StateCB)(int oldstate, int newstate, void* data);
typedef void (*TokenGetter)(const char* server_id, int server_type, char* out, size_t len);
typedef void (*TokenSetter)(const char* server_id, int server_type, const char* tokens);
static long long int get_read_rx_bytes(ReadRxBytes read)
{
return read();
}
static int call_callback(StateCB callback, int oldstate, int newstate, void* data)
{
return callback(oldstate, newstate, data);
}
static void call_token_getter(TokenGetter getter, const char* server_id, int server_type, char* out, size_t len)
{
getter(server_id, server_type, out, len);
}
static void call_token_setter(TokenSetter setter, const char* server_id, int server_type, const char* tokens)
{
setter(server_id, server_type, tokens);
}
*/
import "C"
import (
"bytes"
"context"
"encoding/json"
"runtime/cgo"
"unsafe"
"github.com/eduvpn/eduvpn-common/client"
"github.com/eduvpn/eduvpn-common/i18nerr"
"github.com/eduvpn/eduvpn-common/internal/log"
"github.com/eduvpn/eduvpn-common/types/cookie"
errtypes "github.com/eduvpn/eduvpn-common/types/error"
srvtypes "github.com/eduvpn/eduvpn-common/types/server"
)
var VPNState *client.Client
func getCError(err error) *C.char {
if err == nil {
return nil
}
retErr := errtypes.Error{
Message: errtypes.Translated{
"en": err.Error(),
},
Misc: false,
}
v, ok := err.(*i18nerr.Error)
if ok {
retErr.Message = v.Translations()
retErr.Misc = v.Misc
}
retData, err := getReturnData(retErr)
if err != nil {
return C.CString("failed to get error return")
}
return C.CString(retData)
}
func getReturnData(data interface{}) (string, error) {
// If it is already a string return directly
if x, ok := data.(string); ok {
return x, nil
}
// Otherwise use JSON
b, err := json.Marshal(data)
if err != nil {
return "", err
}
return string(b), nil
}
func stateCallback(
cb C.StateCB,
oldState client.FSMStateID,
newState client.FSMStateID,
data interface{},
) bool {
oldStateC := C.int(oldState)
newStateC := C.int(newState)
d, err := getReturnData(data)
if err != nil {
return false
}
dataC := C.CString(d)
handled := C.call_callback(cb, oldStateC, newStateC, unsafe.Pointer(dataC))
FreeString(dataC)
return handled != C.int(0)
}
func getVPNState() (*client.Client, error) {
if VPNState == nil {
return nil, i18nerr.NewInternal("No state available, did you register the client?")
}
return VPNState, nil
}
// Register creates a new client and also registers the FSM to go to the initial state
//
// `Name` is the name of the client, must be a valid client ID
//
// `Version` is the version of the client. This version field is used for the user agent in all HTTP requests
//
// `cb` is the state callback. It takes three arguments: The old state, the new state and the data for the state as JSON
//
// - Note that the states are defined in client/fsm.go, e.g. NO_SERVER (in Go: StateNoServer), ASK_PROFILE (in Go: StateAskProfile)
//
// - This callback returns non-zero if the state transition is handled. This is used to check if the client handles the needed transitions
//
// debug, if non-zero, enables debugging mode for the library, this means:
//
// - Log everything in debug mode, so you can get more detail of what is going on
//
// - Write the state graph to a file in the configDirectory. This can be used to create a FSM png file with mermaid https://mermaid.js.org/
//
// After registering, the FSM is initialized and the state transition NO_SERVER should have been completed
// If some error occurs during registering, it is returned as a types/error/error.go Error
//
// Example Input:
// ```Register("org.eduvpn.app.linux", "0.0.1", "/tmp/eduvpn-common", myCallbackFunc, 1)```
//
// Example Output:
//
// {
// "message": {
// "en": "failed to register, a VPN state is already present"
// },
// "misc": false
// }
//
//export Register
func Register(
name *C.char,
version *C.char,
configDirectory *C.char,
cb C.StateCB,
debug C.int,
) *C.char {
_, stateErr := getVPNState()
if stateErr == nil {
return getCError(i18nerr.NewInternal("failed to register, a VPN state is already present"))
}
c, err := client.New(
C.GoString(name),
C.GoString(version),
C.GoString(configDirectory),
func(old client.FSMStateID, new client.FSMStateID, data interface{}) bool {
return stateCallback(cb, old, new, data)
},
debug != 0,
)
// Only update the state if we get no error
if err == nil {
// Update the global client such that other functions can retrieve it
// TODO: Use a sync.Once or return a CGO handler instead of a global state?
VPNState = c
// finally register the newly created client
err = c.Register()
if err != nil {
// Note: Registering can only fail for non-newly created clients
// We have obtained a fresh copy here
// This error is only there for the Go API where you can call register multiple times on an already client
panic(err)
}
}
return getCError(err)
}
// ExpiryTimes gets the expiry times for the current server
//
// Expiry times are just fields that represent unix timestamps at which to do certain events regarding expiry,
// e.g. when to show the renew button, when to show expiry notifications
//
// The expiry times structure is defined in types/server/server.go `Expiry`
// If some error occurs, it is returned as types/error/error.go Error
//
// Example Input:
// ```ExpiryTimes()```
//
// Example Output (1...4 are unix timestamps):
// {
// "start_time": 1,
// "end_time": 2,
// "button_time": 3,
// "countdown_time": 4,
// "notification_times": [
// 1,
// 2,
// ],
// }, null
//
//export ExpiryTimes
func ExpiryTimes() (*C.char, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return nil, getCError(stateErr)
}
exp, err := state.ExpiryTimes()
if err != nil {
return nil, getCError(err)
}
ret, err := getReturnData(exp)
if err != nil {
return nil, getCError(err)
}
return C.CString(ret), nil
}
// Deregister cleans up the state for the client.
//
// This function SHOULD be called when the application exits such that the configuration file is saved correctly.
// Note that saving of the configuration file also happens in other cases, such as after getting a VPN configuration.
// Thus it is often not problematic if this function cannot be called due to a client crash
//
// If no client is available or deregistering fails, it returns an error.
//
// Example Input:
// ```Deregister()```
//
// Example Output:
//
// {
// "message": {
// "en": "failed to deregister"
// },
// "misc": false
// }
//
//
//export Deregister
func Deregister() *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
state.Deregister()
VPNState = nil
return nil
}
// AddServer adds a server to the eduvpn-common server list
// `c` is the cookie that is used for cancellation. Create a cookie first with CookieNew. This same cookie is also used for replying to state transitions
//
// `_type` is the type of server that needs to be added. This type is defined in types/server/server.go Type
//
// `id` is the identifier of the string:
//
// - In case of secure internet: The organization ID
//
// - In case of custom server: The base URL
//
// - In case of institute access: The base URL
//
// `ni` stands for non-interactive. If non-zero, any state transitions will not be run.
//
// This `ni` flag is useful for preprovisioned servers. For normal usage, you want to set this to zero (meaning: False)
//
// If the server cannot be added it returns the error as types/error/error.go Error.
// Note that the server is removed when an error has occured
//
// The following state callbacks are mandatory to handle:
//
// - OAUTH_STARTED: This indicates that the OAuth procedure has been started, it returns the URL as the data.
// The client should open the webbrowser with this URL and continue the authorization process. Note: For mobile platforms this returns a Cookie and data (json: `{"cookie": x, "data": url}`).
// This `url` should also be opened in the browser like desktop platforms. But these platforms also need to reply to the library to give back the full authorization code URI with `CookieReply(x, uri)`.
// E.g. `CookieReply(x, "/callback?code=...&state=...&iss=...")` this is the path of the request that the apps get back when the user clicks approve. For this, apps need to register an app url or sorts. For the valid values for app URLs, see the redirect URIs for mobile platforms here https://git.sr.ht/~fkooman/vpn-user-portal/tree/v3/item/src/OAuth/VpnClientDb.php
//
// Example Input (3=custom server):
// ```AddServer(mycookie, 3, "https://demo.eduvpn.nl", 0)```
//
// Example Output:
//
// {
// "message": {
// "en": "failed to add server"
// },
// "misc": false
// }
//
//
//export AddServer
func AddServer(c C.uintptr_t, _type C.int, id *C.char, ni C.int) *C.char {
// TODO: type
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
v, err := getCookie(c)
if err != nil {
return getCError(err)
}
err = state.AddServer(v, C.GoString(id), srvtypes.Type(_type), ni != 0)
return getCError(err)
}
// RemoveServer removes a server from the eduvpn-common server list
//
// `_type` is the type of server that needs to be added. This type is defined in types/server/server.go Type
//
// `id` is the identifier of the string:
//
// - In case of secure internet: The organization ID
//
// - In case of custom server: The base URL
//
// - In case of institute access: The base URL
//
// If the server cannot be removed it returns the error types/error/error.go Error.
//
// Example Input (3=custom server):
// ```RemoveServer(3, "bogus")```
//
// Example Output:
//
// {
// "message": {
// "en": "failed to remove server"
// },
// "misc": false
// }
//
//export RemoveServer
func RemoveServer(_type C.int, id *C.char) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
err := state.RemoveServer(C.GoString(id), srvtypes.Type(_type))
return getCError(err)
}
// CurrentServer gets the current server from eduvpn-common
//
// In eduvpn-common, a server is marked as 'current' if you have gotten a VPN configuration for it
//
// It returns the server as JSON, defined in types/server/server.go Current
//
// If there is no current server or some other, e.g. there is no current state, an error is returned with a nil string
//
// Example Input:
// ```CurrentServer()```
//
// Example Output:
// {
// "institute_access_server": {
// "display_name": {
// "en": "Demo"
// },
// "identifier": "https://demo.eduvpn.nl/",
// "profiles": {
// "map": {
// "internet": {
// "display_name": {
// "en": "Internet"
// },
// "supported_protocols": [
// 1,
// 2
// ]
// },
// "internet-split": {
// "display_name": {
// "en": "No rfc1918 routes"
// },
// "supported_protocols": [
// 1,
// 2
// ]
// }
// },
// "current": "internet"
// },
// "support_contacts": [
// "mailto:eduvpn@surf.nl"
// ],
// "delisted": false
// },
// "server_type": 1
// }, null
//
//export CurrentServer
func CurrentServer() (*C.char, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return nil, getCError(stateErr)
}
srv, err := state.CurrentServer()
if err != nil {
return nil, getCError(err)
}
ret, err := getReturnData(srv)
if err != nil {
return nil, getCError(err)
}
return C.CString(ret), nil
}
// ServerList gets the list of servers that are currently added
//
// This is NOT the discovery list, but the servers that have previously been added with `AddServer`
//
// It returns the server list as a JSON string defined in types/server/server.go List.
// If the server list cannot be retrieved it returns a nil string and an error
//
// Example Input:
// ```ServerList()```
//
// Example Output (current profile here is empty as none has been chosen yet):
//
// {
// "institute_access_servers": [
// {
// "display_name": {
// "en": "Demo"
// },
// "identifier": "https://demo.eduvpn.nl/",
// "profiles": {
// "current": ""
// },
// "support_contacts": [
// "mailto:eduvpn@surf.nl"
// ],
// "delisted": false
// }
// ]
// }, null
//
//
//export ServerList
func ServerList() (*C.char, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return nil, getCError(stateErr)
}
list, err := state.ServerList()
if err != nil {
return nil, getCError(err)
}
ret, err := getReturnData(list)
if err != nil {
return nil, getCError(err)
}
return C.CString(ret), nil
}
// GetConfig gets a configuration for the server
//
// `c` is the cookie that is used for cancellation. Create a cookie first with CookieNew, this same cookie is also used for replying to state transitions
//
// `_type` is the type of server that needs to be added. This type is defined in types/server/server.go Type
//
// `id` is the identifier of the string
//
// - In case of secure internet: The organization ID
// - In case of custom server: The base URL
// - In case of institute access: The base URL
//
// `pTCP` is if we prefer TCP or not to get the configuration, non-zero means yes
//
// `startup` is if the client is just starting up, set this to true (non-zero) if you autoconnect to a server on startup.
// If this startup value is true (non-zero) then any authorization or other callacks (profile/location) are not triggered
//
// After getting a configuration, the FSM moves to the GOT_CONFIG state
// The return data is the configuration, marshalled as JSON and defined in types/server/server.go Configuration
//
// If the config cannot be retrieved it returns an error as types/error/error.go Error.
//
// The current state callbacks MUST be handled:
//
// ### ASK_PROFILE
//
// This asks the client for profile.
//
// This is called when the user/client has not set a profile for this server before, or the current profile is invalid
//
// When the user has selected a profile, reply with the choice using the `CookieReply` function and the profile ID
// e.g. CookieReply(cookie, "wireguard"). CookieReply can be done in the background as the Go library waits for a reply
//
// The data for this transition is defined in types/server/server.go RequiredAskTransition with embedded data Profiles in types/server/server.go.
// Note that RequiredTransition contains the cookie to be used for the CookieReply
//
// So a client would:
//
// - Parse the data to get the cookie and data
//
// - get the cookie
//
// - get the profiles from the data
//
// - show it in the UI and then reply with CookieReply using the choice
//
// ### ASK_LOCATION
//
// This asks the client for a location. Note that under normal circumstances,
// this callback is not actually called as the home organization for the secure internet server is set as the current
// if for some reason, an invalid location has been configured, the library will ask the client for a new one
//
// When the user has selected a location, reply with the choice using the `CookieReply` function and the location ID
// e.g. CookieReply(cookie, "nl")
//
// CookieReply can be done in the background as the Go library waits for a reply
// The data for this transition is defined in types/server/server.go RequiredAskTransition with embedded data a list of strings ([]string)
//
// Note that RequiredTransition contains the cookie to be used for the CookieReply,
//
// So a client would:
//
// - Parse the data to get the cookie and data
//
// - get the cookie
//
// - get the list of locations from the data
//
// - show it in the UI and then reply with CookieReply using the choice
//
// ### OAUTH_STARTED
//
// - OAUTH_STARTED: This indicates that the OAuth procedure has been started, it returns the URL as the data.
// The client should open the webbrowser with this URL and continue the authorization process. Note: For mobile platforms this returns a Cookie and data (json: `{"cookie": x, "data": url}`).
// This `url` should also be opened in the browser like desktop platforms. But these platforms also need to reply to the library to give back the full authorization code URI with `CookieReply(x, uri)`.
// E.g. `CookieReply(x, "/callback?code=...&state=...&iss=...")` this is the path of the request that the apps get back when the user clicks approve. For this, apps need to register an app url or sorts. For the valid values for app URLs, see the redirect URIs for mobile platforms here https://git.sr.ht/~fkooman/vpn-user-portal/tree/v3/item/src/OAuth/VpnClientDb.php
//
// The client should open the webbrowser with this URL and continue the authorization process.
// This is only called if authorization needs to be retriggered
//
// Example Input (3=custom server):
// ```GetConfig(myCookie, 3, "https://demo.eduvpn.nl/", 0, 0)```
//
// Example Output (2=WireGuard):
//
// {
// "config": "https://demo.eduvpn.nl/\n# Profile: ...\n# Expires: ...\n\n[Interface]\nPrivateKey = ...\nAddress = ...\nDNS = ...\n\n[Peer]\nPublicKey = ...=\nAllowedIPs = 0.0.0.0/0,::/0\nEndpoint = ...",
// "protocol": 2,
// "default_gateway": true
// }
//
//export GetConfig
func GetConfig(c C.uintptr_t, _type C.int, id *C.char, pTCP C.int, startup C.int) (*C.char, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return nil, getCError(stateErr)
}
ck, err := getCookie(c)
if err != nil {
return nil, getCError(err)
}
preferTCPBool := pTCP != 0
startupBool := startup != 0
cfg, err := state.GetConfig(ck, C.GoString(id), srvtypes.Type(_type), preferTCPBool, startupBool)
if cfg != nil && err == nil {
d, err := getReturnData(cfg)
if err == nil {
return C.CString(d), nil
}
}
return nil, getCError(err)
}
// SetProfileID sets the profile ID of the current serrver
//
// This MUST only be called if the user/client wishes to manually set a profile instead of the common lib asking for one using a transition
//
// `Data` is the profile ID
//
// It returns an error if unsuccessful.
// Example Input: ```SetProfileID("splittunnel")```
//
// Example Output:
//
// {
// "message": {
// "en": "profile does not exist"
// },
// "misc": false
// }
//
//export SetProfileID
func SetProfileID(data *C.char) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
profileErr := state.SetProfileID(C.GoString(data))
return getCError(profileErr)
}
// SetSecureLocation sets the location for the secure internet server if it exists
//
// This MUST only be called if the user/client wishes to manually set a location instead of the common lib asking for one using a transition
//
// `orgID` is the organisation ID for the secure internet server
// `cc` is the location ID/country code
//
// It returns an error if unsuccessful.
// Example Input: ```SetSecureLocation("http://idp.geant.org/", "nl")```
//
// Example Output:
//
// {
// "message": {
// "en": "location does not exist"
// },
// "misc": false
// }
//
//export SetSecureLocation
func SetSecureLocation(orgID *C.char, cc *C.char) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
locationErr := state.SetSecureLocation(C.GoString(orgID), C.GoString(cc))
return getCError(locationErr)
}
// DiscoServers gets the servers from discovery, returned as types/discovery/discovery.go Servers marshalled as JSON
//
// `c` is the Cookie that needs to be passed. Create a new Cookie using `CookieNew`
//
// If it was unsuccessful, it returns an error. Note that when the lib was built in release mode the data is almost always non-nil, even when an error has occurred
// This means it has just returned the cached list
//
// Example Input: ```DiscoServers(myCookie)```
//
// Example Output:
//
// {
// "v": 1695291170,
// "server_list": [
// {
// "base_url": "https://eduvpn.rash.al/",
// "country_code": "AL",
// "public_key_list": [
// "k7.pub.S4j5JJiTEz1fWMkI.hzU_xJasWzD6Da2WR7hgbobx9n3o4XSDeqFh03tgM-0"
// ],
// "server_type": "secure_internet",
// "support_contact": [
// "mailto:helpdesk@rash.al"
// ]
// },
// {
// "base_url": "https://eduvpn.deic.dk/",
// "country_code": "DK",
// "public_key_list": [
// "k7.pub.RNOJIYbemlfsE7EL.BxmV2l2UV7pCqz135ofBgyG9-xLg0R9rILQedZrfLtE"
// ], ..................
// } , null
//
//export DiscoServers
func DiscoServers(c C.uintptr_t) (*C.char, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return nil, getCError(stateErr)
}
ck, err := getCookie(c)
if err != nil {
return nil, getCError(err)
}
servers, err := state.DiscoServers(ck)
if servers == nil && err != nil {
return nil, getCError(err)
}
s, reterr := getReturnData(servers)
if reterr != nil {
return nil, getCError(reterr)
}
return C.CString(s), getCError(err)
}
// DiscoOrganizations gets the organizations from discovery, returned as types/discovery/discovery.go Organizations marshalled as JSON
//
// `c` is the Cookie that needs to be passed. Create a new Cookie using `CookieNew`
//
// If it was unsuccessful, it returns an error. Note that when the lib was built in release mode the data is almost always non-nil, even when an error has occurred
// This means it has just returned the cached list
//
// Example Input: ```DiscoOrganizations(myCookie)```
//
// Example Output:
// {
// "v": 1695291170,
// "organization_list": [
// {
// "display_name": {
// "en": "Academic Network of Albania - RASH"
// },
// "org_id": "https://idp.rash.al/simplesaml/saml2/idp/metadata.php",
// "secure_internet_home": "https://eduvpn.rash.al/"
// },
// {
// "display_name": {
// "da": "Dansk Sprognævn",
// "en": "Danish Language Council"
// },
// "org_id": "http://idp.dsn.dk/adfs/services/trust",
// "secure_internet_home": "https://eduvpn.deic.dk/"
// },
// {
// "display_name": {
// "da": "Erhvervsakademi Aarhus",
// "en": "Business Academy Aarhus"
// },
// "org_id": "http://adfs.eaaa.dk/adfs/services/trust",
// "secure_inte .....................
// }, null
//
//export DiscoOrganizations
func DiscoOrganizations(c C.uintptr_t) (*C.char, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return nil, getCError(stateErr)
}
ck, err := getCookie(c)
if err != nil {
return nil, getCError(err)
}
orgs, err := state.DiscoOrganizations(ck)
if orgs == nil && err != nil {
return nil, getCError(err)
}
s, reterr := getReturnData(orgs)
if reterr != nil {
return nil, getCError(reterr)
}
return C.CString(s), getCError(err)
}
// Cleanup sends a /disconnect to cleanup the connection
//
// This MUST be called when disconnecting, see https://docs.eduvpn.org/server/v3/api.html#application-flow
// `c` is the Cookie that needs to be passed. Create a new Cookie using `CookieNew`
//
// If it was unsuccessful, it returns an error.
//
// Example Input: ```Cleanup(myCookie)```
//
// Example Output:
//
// {
// "message": {
// "en": "cleanup was not successful"
// },
// "misc": false
// }
//export Cleanup
func Cleanup(c C.uintptr_t) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
ck, err := getCookie(c)
if err != nil {
return getCError(err)
}
err = state.Cleanup(ck)
return getCError(err)
}
// RenewSession renews the session of the VPN
//
// This essentially means that the OAuth tokens are deleted.
// And it also possibly re-runs every state callback you need when getting a config.
// So least you MUST handle the OAuth started transition
//
// It returns an error if unsuccessful.
// Example Input: ```RenewSession(myCookie)```
//
// Example Output:
//
// {
// "message": {
// "en": "could not renew session"
// },
// "misc": false
// }
//
//export RenewSession
func RenewSession(c C.uintptr_t) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
ck, err := getCookie(c)
if err != nil {
return getCError(err)
}
renewSessionErr := state.RenewSession(ck)
return getCError(renewSessionErr)
}
// SetSupportWireguard enables or disables WireGuard for the client.
// *WARNING: This function will be removed*
//
// By default WireGuard support is enabled
// To disable it you can pass a 0 int to this
//
// `support` thus indicates whether or not to enable WireGuard
// An error is returned if this is not possible
//
//
//export SetSupportWireguard
func SetSupportWireguard(support C.int) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
// TODO: Do not do any nested struct member here
state.Servers.WGSupport = support != 0
return nil
}
// StartFailover starts the 'failover' procedure in eduvpn-common
//
// Failover has one primary goal: check if the VPN can reach the gateway.
// This can be used to check whether or not the client needs to 'failover' to prefer TCP (if currently using UDP).
// Which is useful to go from a broken WireGuard connection to OpenVPN over TCP
//
// - `c` is the cookie that is passed for cancellation. To create a cookie, use the `CookieNew` function
// - `gateway` is the gateway IP of the VPN
// - `readRxBytes` is a function that returns the current rx bytes of the VPN interface, this should return a `long long int` in c
//
// It returns a boolean whether or not the common lib has determined that it cannot reach the gateway. Non-zero=dropped, zero=not dropped.
// It also returns an error, if it fails to indicate if it has dropped or not. In this case, dropped is also set to zero
//
// Example Input: ```StartFailover(myCookie, "10.10.10.1", 1400, myRxBytesReader)```
//
// Example Output: ```1, null```
//
//export StartFailover
func StartFailover(c C.uintptr_t, gateway *C.char, mtu C.int, readRxBytes C.ReadRxBytes) (C.int, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return C.int(0), getCError(stateErr)
}
ck, err := getCookie(c)
if err != nil {
return C.int(0), getCError(err)
}
dropped, droppedErr := state.StartFailover(ck, C.GoString(gateway), int(mtu), func() (int64, error) {
rxBytes := int64(C.get_read_rx_bytes(readRxBytes))
if rxBytes < 0 {
return 0, i18nerr.NewInternal("client gave an invalid rx bytes value")
}
return rxBytes, nil
})
if droppedErr != nil {
return C.int(0), getCError(droppedErr)
}
droppedC := C.int(0)
if dropped {
droppedC = C.int(1)
}
return droppedC, nil
}
// StartProxyguard starts the 'proxyguard' procedure in eduvpn-common
//
//export StartProxyguard
func StartProxyguard(c C.uintptr_t, listen *C.char, tcpsp C.int, peer *C.char) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
ck, err := getCookie(c)
if err != nil {
return getCError(err)
}
proxyErr := state.StartProxyguard(ck, C.GoString(listen), int(tcpsp), C.GoString(peer))
return getCError(proxyErr)
}
// SetState sets the state of the statemachine
//
// Note: this transitions the FSM into the new state without passing any data to it.
// Example Input: ```SetState(5)```
//
// Example Output: ```null```
//
//export SetState
func SetState(fsmState C.int) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
return getCError(state.SetState(client.FSMStateID(fsmState)))
}
// InState checks if the FSM is in `fsmState`
//
// Example Input: ```InState(5)```
//
// Example Output: ```1, null```
//
//export InState
func InState(fsmState C.int) (C.int, *C.char) {
state, stateErr := getVPNState()
if stateErr != nil {
return 0, getCError(stateErr)
}
if yes := state.InState(client.FSMStateID(fsmState)); yes {
return 1, nil
}
return 0, nil
}
// FreeString frees a string that was allocated by the eduvpn-common Go library
//
// This happens when we return strings, such as errors from the Go lib back to the client.
// The client MUST thus ensure that this memory is freed using this function.
// Simply pass the pointer to the string in here
//
// Example Input: ```FreeString(strPtr)```
//
//export FreeString
func FreeString(addr *C.char) {
C.free(unsafe.Pointer(addr))
}
func getCookie(c C.uintptr_t) (*cookie.Cookie, error) {
if c == 0 {
return nil, i18nerr.NewInternal("cookie is nil")
}
h := cgo.Handle(c)
v, ok := h.Value().(*cookie.Cookie)
if !ok {
return nil, i18nerr.NewInternal("value is not a cookie")
}
// the cookie itself has a reference to the handle
// such that we can return the same exact handle in callbacks
// TODO: On first glance this might not make any sense, find a better way
v.H = h
return v, nil
}
// SetTokenHandler sets the token getters and token setters for OAuth
//
// Because the data that is saved does not contain OAuth tokens for server, the common lib asks and sets the tokens using these callback functions.
// The client can thus pass callbacks to this function so that the tokens can be securely stored in a keyring
//
// Client must pass two arguments to these functions
//
// - getter is the void function that gets tokens from the client. It takes three arguments:
//
// - The `server` for which to get the tokens for, marshalled as JSON and defined in types/server/server.go `Current`
//
// - The `output` buffer
//
// - The `length` of the output buffer. This 'output buffer' must contain the tokens, marshalled as JSON that is defined in types/server/server.go `Tokens`
//
// setter is the void function that sets tokens. It takes two arguments:
//
// - The `server` for which to get the tokens for, marshalled as JSON and defined in types/server/server.go `Current`
//
// - The `tokens`, defined in types/server/server.go `Tokens` marshalled as JSON
//
// It returns an error when the tokens cannot be set.
// Example Input: ```SetTokenHandler(getterFunc, setterFunc)```
//
// Example Output: ```null```
//
//export SetTokenHandler
func SetTokenHandler(getter C.TokenGetter, setter C.TokenSetter) *C.char {
state, stateErr := getVPNState()
if stateErr != nil {
return getCError(stateErr)
}
state.TokenSetter = func(sid string, stype srvtypes.Type, t srvtypes.Tokens) {
tJSON, err := getReturnData(t)
if err != nil {
log.Logger.Warningf("failed to get tokens for setting tokens in exports: %v", err)
return
}
c1 := C.CString(sid)
c2 := C.CString(tJSON)
C.call_token_setter(setter, c1, C.int(stype), c2)
FreeString(c1)
FreeString(c2)
}
state.TokenGetter = func(sid string, stype srvtypes.Type) *srvtypes.Tokens {
// create an output buffer with size 2048
// In my testing tokens seem to be ~1033 bytes marshalled as JSON
d := make([]byte, 2048)
c1 := C.CString(sid)
C.call_token_getter(getter, c1, C.int(stype), (*C.char)(unsafe.Pointer(&d[0])), C.size_t(len(d)))
FreeString(c1)
// get null pointer index as unmarshalling wants it without
null := bytes.IndexByte(d, 0)
if null < 0 {
log.Logger.Warningf("output buffer is not NULL terminated")
return nil
}
// no data found
if null == 0 {
log.Logger.Debugf("empty string returned when getting tokens")
return nil
}
var gotT srvtypes.Tokens
err := json.Unmarshal(d[:null], &gotT)
if err != nil {
log.Logger.Warningf("failed to get JSON data for getting tokens in exports: %v", err)
return nil
}
return &gotT
}
return nil
}
// CookieNew creates a new cookie and returns it
//
// This value should not be parsed or converted somehow by the client
// This value is simply to pass back to the Go library
// This value has two purposes:
//
// - Cancel a long running function
//
// - Send a reply to a state transition (ASK_PROFILE and ASK_LOCATION)
//
// Functions that take a cookie have it as the first argument
// Example Input: ```CookieNew()```
//
// Example Output: ```5```
//
//export CookieNew
func CookieNew() C.uintptr_t {
c := cookie.NewWithContext(context.Background())
return C.uintptr_t(cgo.NewHandle(c))
}
// CookieReply replies to a state transition using the cookie
//
// The data that is sent to the Go library is the second argument of this function
//
// - `c` is the Cookie
//
// - `data` is the data to send, e.g. a profile ID
//
// Example Input: ```CookieReply(myCookie, "split-tunnel-profile")```
//
// Example Output: ```null```
//
//export CookieReply
func CookieReply(c C.uintptr_t, data *C.char) *C.char {
v, err := getCookie(c)
if err != nil {
return getCError(err)
}
err = v.Send(C.GoString(data))
return getCError(err)
}
// CookieDelete deletes the cookie by cancelling it and deleting the underlying cgo handle
//
// This function MUST be called when the cookie that is created using `CookieNew` is no longer needed.
// Example Input: ```CookieDelete(myCookie)```
//
// Example Output: null
//
//export CookieDelete
func CookieDelete(c C.uintptr_t) *C.char {
v, err := getCookie(c)
if err != nil {
return getCError(err)
}
// cancel the cookie and then delete the handle
err = v.Cancel()
cgo.Handle(c).Delete()
return getCError(err)
}
// CookieCancel cancels the cookie
//
// This means that functions which take this as first argument, return if they're still running
// The error cause is always context.Canceled for that cancelled function: https://pkg.go.dev/context#pkg-variables
//
// This CookieCancel function can also return an error if cancelling was unsuccessful
// Example Input: ```CookieCancel(myCookie)```
//
// Example Output: null
//
//export CookieCancel
func CookieCancel(c C.uintptr_t) *C.char {
v, err := getCookie(c)
if err != nil {
return getCError(err)
}
err = v.Cancel()
if err != nil {
return getCError(err)
}
return nil
}
// Not used in library, but needed to compile.
func main() { panic("compile with -buildmode=c-shared") }
|