-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathovpn.go
416 lines (346 loc) · 8.01 KB
/
ovpn.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
/*
* ovpncli -- Library for wrapping openvpn3 (https://github.com/OpenVPN/openvpn3) functionality in go way.
* Copyright (C) 2022 Vai3soh
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License Version 3
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License
* along with this program in the COPYING file.
* If not, see <http://www.gnu.org/licenses/>.
*/
package ovpncli
import (
"context"
"errors"
"fmt"
"golang.org/x/sync/errgroup"
)
type Client interface {
ClientAPI_OpenVPNClient
deleteClient()
StartConnection() error
StopConnection()
Reconnection(time int)
ResumeConnect()
PauseConnect(reason string)
SetContext(ctx context.Context)
}
type client struct {
ClientAPI_OpenVPNClient
g *errgroup.Group
ctx context.Context
signal chan struct{}
}
type clientConfig struct {
ClientAPI_Config
}
func (c *client) SetContext(ctx context.Context) {
c.ctx = ctx
}
func (c *client) deleteClient() {
DeleteDirectorClientAPI_OpenVPNClient(c.ClientAPI_OpenVPNClient)
}
func (c *client) controlCancelContext() error {
for {
select {
case <-c.ctx.Done():
c.StopConnection()
return c.ctx.Err()
case <-c.signal:
return nil
}
}
}
func (c *client) ResumeConnect() {
c.Resume()
}
// Pause the client -- useful to avoid continuous reconnection attempts
// when network is down. May be called from a different thread
// when connect() is running.
func (c *client) PauseConnect(reason string) {
c.Pause(reason)
}
func (c *client) Reconnection(time int) {
c.Reconnect(time)
}
func (c *client) StartConnection() error {
c.g.Go(func() error {
status := c.Connect()
if status.GetError() {
return fmt.Errorf("error with status: [%s]", status.GetMessage())
}
if c.ctx.Err() == nil {
c.signal <- struct{}{}
}
return nil
})
c.g.Go(func() error {
err := c.controlCancelContext()
return err
})
if err := c.g.Wait(); err == nil || errors.Is(err, context.Canceled) {
return nil
} else {
return err
}
}
func (c *client) isLive() bool {
return c.Swigcptr() != 0
}
func (c *client) StopConnection() {
if c.isLive() {
c.Stop()
}
}
func DeleteClient(c Client) {
c.deleteClient()
}
type OverwriteClient interface{}
func NewClient(ocl OverwriteClient, ctx context.Context) Client {
eg, gctx := errgroup.WithContext(ctx)
cl := NewDirectorClientAPI_OpenVPNClient(ocl)
cli := &client{
ClientAPI_OpenVPNClient: cl,
g: eg,
ctx: gctx,
signal: make(chan struct{}),
}
return cli
}
type Option func(*clientConfig)
func NewClientConfig(opts ...Option) *clientConfig {
op := &clientConfig{
ClientAPI_Config: NewClientAPI_Config(),
}
for _, opt := range opts {
opt(op)
}
return op
}
func WithConfig(config string) Option {
return func(op *clientConfig) {
op.SetContent(config)
}
}
// 1,2
func WithSslDebugLevel(level int) Option {
return func(op *clientConfig) {
op.SetSslDebugLevel(level)
}
}
// yes|no|asym
func WithCompressionMode(mode string) Option {
return func(op *clientConfig) {
op.SetCompressionMode(mode)
}
}
func WithConnTimeout(time int) Option {
return func(op *clientConfig) {
op.SetConnTimeout(time)
}
}
func WithLegacyAlgorithms(enable bool) Option {
return func(op *clientConfig) {
op.SetEnableLegacyAlgorithms(enable)
}
}
func WithNonPreferredDCAlgorithms(enable bool) Option {
return func(op *clientConfig) {
op.SetEnableNonPreferredDCAlgorithms(enable)
}
}
func WithDisableClientCert(enable bool) Option {
return func(op *clientConfig) {
op.SetDisableClientCert(enable)
}
}
func WithClockTickMS(timeMS uint) Option {
return func(op *clientConfig) {
op.SetClockTickMS(timeMS)
}
}
func WithRetryOnAuthFailed(enable bool) Option {
return func(op *clientConfig) {
op.SetRetryOnAuthFailed(enable)
}
}
func WithAllowLocalDnsResolvers(enable bool) Option {
return func(op *clientConfig) {
op.SetAllowLocalDnsResolvers(enable)
}
}
func WithAllowLocalLanAccess(enable bool) Option {
return func(op *clientConfig) {
op.SetAllowLocalLanAccess(enable)
}
}
func WithAllowUnusedAddrFamilies(arg string) Option {
return func(op *clientConfig) {
op.SetAllowUnusedAddrFamilies(arg)
}
}
func WithAltProxy(enable bool) Option {
return func(op *clientConfig) {
op.SetAltProxy(enable)
}
}
func WithAutologinSessions(enable bool) Option {
return func(op *clientConfig) {
op.SetAutologinSessions(enable)
}
}
func WithDco(enable bool) Option {
return func(op *clientConfig) {
op.SetDco(enable)
}
}
func WithEcho(enable bool) Option {
return func(op *clientConfig) {
op.SetEcho(enable)
}
}
func WithExternalPkiAlias(arg string) Option {
return func(op *clientConfig) {
op.SetExternalPkiAlias(arg)
}
}
func WithGenerateTunBuilderCaptureEvent(arg bool) Option {
return func(op *clientConfig) {
op.SetGenerate_tun_builder_capture_event(arg)
}
}
func WithGoogleDnsFallback(arg bool) Option {
return func(op *clientConfig) {
op.SetGoogleDnsFallback(arg)
}
}
func WithGremlinConfig(arg string) Option {
return func(op *clientConfig) {
op.SetGremlinConfig(arg)
}
}
func WithGuiVersion(arg string) Option {
return func(op *clientConfig) {
op.SetGuiVersion(arg)
}
}
func WithHwAddrOverride(arg string) Option {
return func(op *clientConfig) {
op.SetHwAddrOverride(arg)
}
}
func WithInfo(arg bool) Option {
return func(op *clientConfig) {
op.SetInfo(arg)
}
}
func WithPeerInfo(arg Std_vector_Sl_openvpn_ClientAPI_KeyValue_Sg_) Option {
return func(op *clientConfig) {
op.SetPeerInfo(arg)
}
}
func WithPlatformVersion(arg string) Option {
return func(op *clientConfig) {
op.SetPlatformVersion(arg)
}
}
func WithPortOverride(arg string) Option {
return func(op *clientConfig) {
op.SetPortOverride(arg)
}
}
func WithPrivateKeyPassword(arg string) Option {
return func(op *clientConfig) {
op.SetPrivateKeyPassword(arg)
}
}
func WithProtoOverride(arg string) Option {
return func(op *clientConfig) {
op.SetProtoOverride(arg)
}
}
func WithProtoVersionOverride(arg int) Option {
return func(op *clientConfig) {
op.SetProtoVersionOverride(arg)
}
}
func WithProxyAllowCleartextAuth(arg bool) Option {
return func(op *clientConfig) {
op.SetProxyAllowCleartextAuth(arg)
}
}
func WithProxyHost(arg string) Option {
return func(op *clientConfig) {
op.SetProxyHost(arg)
}
}
func WithProxyPassword(arg string) Option {
return func(op *clientConfig) {
op.SetProxyPassword(arg)
}
}
func WithProxyPort(arg string) Option {
return func(op *clientConfig) {
op.SetProxyPort(arg)
}
}
func WithProxyUsername(arg string) Option {
return func(op *clientConfig) {
op.SetProxyUsername(arg)
}
}
func WithServerOverride(arg string) Option {
return func(op *clientConfig) {
op.SetServerOverride(arg)
}
}
func WithSsoMethods(arg string) Option {
return func(op *clientConfig) {
op.SetSsoMethods(arg)
}
}
func WithSynchronousDnsLookup(arg bool) Option {
return func(op *clientConfig) {
op.SetSynchronousDnsLookup(arg)
}
}
func WithTlsCertProfileOverride(arg string) Option {
return func(op *clientConfig) {
op.SetTlsCertProfileOverride(arg)
}
}
func WithTlsCipherList(arg string) Option {
return func(op *clientConfig) {
op.SetTlsCipherList(arg)
}
}
func WithTlsCiphersuitesList(arg string) Option {
return func(op *clientConfig) {
op.SetTlsCiphersuitesList(arg)
}
}
func WithTlsVersionMinOverride(arg string) Option {
return func(op *clientConfig) {
op.SetTlsVersionMinOverride(arg)
}
}
func WithTunPersist(arg bool) Option {
return func(op *clientConfig) {
op.SetTunPersist(arg)
}
}
func WithWinTun(arg bool) Option {
return func(op *clientConfig) {
op.SetWintun(arg)
}
}
func WithDefaultKeyDirection(arg int) Option {
return func(op *clientConfig) {
op.SetDefaultKeyDirection(arg)
}
}