-
Notifications
You must be signed in to change notification settings - Fork 87
/
client_integration_test.go
464 lines (385 loc) · 9.98 KB
/
client_integration_test.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
package wgctrl_test
import (
"bytes"
"errors"
"fmt"
"net"
"os"
"sort"
"strings"
"testing"
"time"
"github.com/google/go-cmp/cmp"
"github.com/mikioh/ipaddr"
"golang.zx2c4.com/wireguard/wgctrl"
"golang.zx2c4.com/wireguard/wgctrl/internal/wginternal"
"golang.zx2c4.com/wireguard/wgctrl/internal/wgtest"
"golang.zx2c4.com/wireguard/wgctrl/wgtypes"
)
func TestIntegrationClient(t *testing.T) {
c, done := integrationClient(t)
defer done()
devices, err := c.Devices()
if err != nil {
// It seems that not all errors returned by UNIX socket dialing
// conform to os.IsPermission, so for now, be lenient and assume that
// any error here means that permission was denied.
t.Skipf("skipping, failed to get devices: %v", err)
}
tests := []struct {
name string
fn func(t *testing.T, c *wgctrl.Client, d *wgtypes.Device)
}{
{
name: "get",
fn: testGet,
},
{
name: "configure",
fn: testConfigure,
},
{
name: "configure many IPs",
fn: testConfigureManyIPs,
},
{
name: "configure many peers",
fn: testConfigureManyPeers,
},
{
name: "configure peers update only",
fn: testConfigurePeersUpdateOnly,
},
{
name: "reset",
fn: func(t *testing.T, c *wgctrl.Client, d *wgtypes.Device) {
// Reset device several times; this used to cause a hang in
// wireguard-go in late 2018.
for i := 0; i < 10; i++ {
resetDevice(t, c, d)
}
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
// Panic if a specific test takes too long.
timer := time.AfterFunc(5*time.Minute, func() {
panic("test took too long")
})
defer timer.Stop()
for _, d := range devices {
// Break each device into another sub-test so that individual
// drivers can be implemented as read-only and skip configuration
// and reset in tests.
t.Run(d.Name, func(t *testing.T) {
tt.fn(t, c, d)
// Start with a clean state after each test.
resetDevice(t, c, d)
})
}
})
}
}
func TestIntegrationClientIsNotExist(t *testing.T) {
c, done := integrationClient(t)
defer done()
if _, err := c.Device("wgnotexist0"); !errors.Is(err, os.ErrNotExist) {
t.Fatalf("expected is not exist error, but got: %v", err)
}
}
func integrationClient(t *testing.T) (*wgctrl.Client, func()) {
t.Helper()
const (
env = "WGCTRL_INTEGRATION"
confirm = "yesreallydoit"
)
if os.Getenv(env) != confirm {
t.Skipf("skipping, set '%s=%s to run; DANGER: this will reset and reconfigure any detected WireGuard devices",
env, confirm)
}
c, err := wgctrl.New()
if err != nil {
if errors.Is(err, os.ErrNotExist) {
t.Skip("skipping, wgctrl is not available on this system")
}
t.Fatalf("failed to open client: %v", err)
}
return c, func() {
if err := c.Close(); err != nil {
t.Fatalf("failed to close client: %v", err)
}
}
}
func testGet(t *testing.T, c *wgctrl.Client, d *wgtypes.Device) {
t.Logf("device: %s: %s", d.Name, d.PublicKey.String())
dn, err := c.Device(d.Name)
if err != nil {
t.Fatalf("failed to get %q: %v", d.Name, err)
}
if diff := cmp.Diff(d, dn); diff != "" {
t.Fatalf("unexpected Device (-want +got):\n%s", diff)
}
}
func testConfigure(t *testing.T, c *wgctrl.Client, d *wgtypes.Device) {
var (
port = 8888
ips = []net.IPNet{
wgtest.MustCIDR("192.0.2.0/32"),
wgtest.MustCIDR("2001:db8::/128"),
}
priv = wgtest.MustPrivateKey()
peerKey = wgtest.MustPublicKey()
)
t.Logf("before: %s: %s", d.Name, d.PublicKey.String())
cfg := wgtypes.Config{
PrivateKey: &priv,
ListenPort: &port,
ReplacePeers: true,
Peers: []wgtypes.PeerConfig{{
PublicKey: peerKey,
ReplaceAllowedIPs: true,
AllowedIPs: ips,
}},
}
tryConfigure(t, c, d.Name, cfg)
dn, err := c.Device(d.Name)
if err != nil {
t.Fatalf("failed to get %q by name: %v", d.Name, err)
}
// Now that a new configuration has been applied, update our initial
// device for comparison.
*d = wgtypes.Device{
Name: d.Name,
Type: d.Type,
PrivateKey: priv,
PublicKey: priv.PublicKey(),
ListenPort: port,
Peers: []wgtypes.Peer{{
PublicKey: peerKey,
LastHandshakeTime: time.Time{},
AllowedIPs: ips,
ProtocolVersion: 1,
}},
}
// Sort AllowedIPs as different implementations might return
// them in different order
for i := range dn.Peers {
ips := dn.Peers[i].AllowedIPs
sort.Slice(ips, func(i, j int) bool {
return bytes.Compare(ips[i].IP, ips[j].IP) > 0
})
}
if diff := cmp.Diff(d, dn); diff != "" {
t.Fatalf("unexpected Device from Device (-want +got):\n%s", diff)
}
// Leading space for alignment.
out := fmt.Sprintf(" after: %s: %s\n", dn.Name, dn.PublicKey.String())
for _, p := range dn.Peers {
out += fmt.Sprintf("- peer: %s, IPs: %s\n", p.PublicKey.String(), ipsString(p.AllowedIPs))
}
t.Log(out)
}
func testConfigureManyIPs(t *testing.T, c *wgctrl.Client, d *wgtypes.Device) {
// Apply 511 IPs per peer.
var (
countIPs int
peers []wgtypes.PeerConfig
)
for i := 0; i < 2; i++ {
cidr := "2001:db8::/119"
if i == 1 {
cidr = "2001:db8:ffff::/119"
}
cur, err := ipaddr.Parse(cidr)
if err != nil {
t.Fatalf("failed to create cursor: %v", err)
}
var ips []net.IPNet
for pos := cur.Next(); pos != nil; pos = cur.Next() {
bits := 128
if pos.IP.To4() != nil {
bits = 32
}
ips = append(ips, net.IPNet{
IP: pos.IP,
Mask: net.CIDRMask(bits, bits),
})
}
peers = append(peers, wgtypes.PeerConfig{
PublicKey: wgtest.MustPublicKey(),
ReplaceAllowedIPs: true,
AllowedIPs: ips,
})
countIPs += len(ips)
}
cfg := wgtypes.Config{
ReplacePeers: true,
Peers: peers,
}
tryConfigure(t, c, d.Name, cfg)
dn, err := c.Device(d.Name)
if err != nil {
t.Fatalf("failed to get %q by name: %v", d.Name, err)
}
peerIPs := countPeerIPs(dn)
if diff := cmp.Diff(countIPs, peerIPs); diff != "" {
t.Fatalf("unexpected number of configured peer IPs (-want +got):\n%s", diff)
}
t.Logf("device: %s: %d IPs", d.Name, peerIPs)
}
func testConfigureManyPeers(t *testing.T, c *wgctrl.Client, d *wgtypes.Device) {
const (
nPeers = 256
peerIPs = 512
)
var peers []wgtypes.PeerConfig
for i := 0; i < nPeers; i++ {
var (
pk = wgtest.MustPresharedKey()
dur = 10 * time.Second
)
ips := generateIPs((i + 1) * 2)
peers = append(peers, wgtypes.PeerConfig{
PublicKey: wgtest.MustPublicKey(),
PresharedKey: &pk,
ReplaceAllowedIPs: true,
Endpoint: &net.UDPAddr{
IP: ips[0].IP,
Port: 1111,
},
PersistentKeepaliveInterval: &dur,
AllowedIPs: ips,
})
}
var (
priv = wgtest.MustPrivateKey()
n = 0
)
cfg := wgtypes.Config{
PrivateKey: &priv,
ListenPort: &n,
FirewallMark: &n,
ReplacePeers: true,
Peers: peers,
}
tryConfigure(t, c, d.Name, cfg)
dn, err := c.Device(d.Name)
if err != nil {
t.Fatalf("failed to get updated device: %v", err)
}
if diff := cmp.Diff(nPeers, len(dn.Peers)); diff != "" {
t.Fatalf("unexpected number of peers (-want +got):\n%s", diff)
}
countIPs := countPeerIPs(dn)
if diff := cmp.Diff(peerIPs, countIPs); diff != "" {
t.Fatalf("unexpected number of peer IPs (-want +got):\n%s", diff)
}
t.Logf("device: %s: %d peers, %d IPs", d.Name, len(dn.Peers), countIPs)
}
func testConfigurePeersUpdateOnly(t *testing.T, c *wgctrl.Client, d *wgtypes.Device) {
var (
peerA = wgtest.MustPublicKey()
peerB = wgtest.MustPublicKey()
psk = wgtest.MustPresharedKey()
)
// Create an initial peer configuration.
cfg := wgtypes.Config{
Peers: []wgtypes.PeerConfig{{
PublicKey: peerA,
}},
}
tryConfigure(t, c, d.Name, cfg)
// Create an updated configuration that should only apply to the existing
// peer due to update only flags.
cfg = wgtypes.Config{
Peers: []wgtypes.PeerConfig{
{
PublicKey: peerA,
UpdateOnly: true,
PresharedKey: &psk,
},
{
PublicKey: peerB,
UpdateOnly: true,
PresharedKey: &psk,
},
},
}
if err := c.ConfigureDevice(d.Name, cfg); err != nil {
if d.Type == wgtypes.FreeBSDKernel && err == wgtypes.ErrUpdateOnlyNotSupported {
// TODO(stv0g): remove as soon as the FreeBSD kernel module supports it
t.Skip("FreeBSD kernel devices do not support UpdateOnly flag")
}
t.Fatalf("failed to configure second time on %q: %v", d.Name, err)
}
dn, err := c.Device(d.Name)
if err != nil {
t.Fatalf("failed to get updated device: %v", err)
}
want := []wgtypes.Peer{{
PublicKey: peerA,
PresharedKey: psk,
ProtocolVersion: 1,
}}
if diff := cmp.Diff(want, dn.Peers); diff != "" {
t.Fatalf("unexpected configured peers (-want +got):\n%s", diff)
}
}
func resetDevice(t *testing.T, c *wgctrl.Client, d *wgtypes.Device) {
t.Helper()
zero := 0
cfg := wgtypes.Config{
// Clear device config.
PrivateKey: &wgtypes.Key{},
ListenPort: &zero,
FirewallMark: &zero,
// Clear all peers.
ReplacePeers: true,
}
tryConfigure(t, c, d.Name, cfg)
}
func tryConfigure(t *testing.T, c *wgctrl.Client, device string, cfg wgtypes.Config) {
t.Helper()
if err := c.ConfigureDevice(device, cfg); err != nil {
if err == wginternal.ErrReadOnly {
t.Skipf("skipping, device %q implementation is read-only", device)
}
t.Fatalf("failed to configure %q: %v", device, err)
}
}
func countPeerIPs(d *wgtypes.Device) int {
var count int
for _, p := range d.Peers {
count += len(p.AllowedIPs)
}
return count
}
func ipsString(ipns []net.IPNet) string {
ss := make([]string, 0, len(ipns))
for _, ipn := range ipns {
ss = append(ss, ipn.String())
}
return strings.Join(ss, ", ")
}
func generateIPs(n int) []net.IPNet {
cur, err := ipaddr.Parse("2001:db8::/64")
if err != nil {
panicf("failed to create cursor: %v", err)
}
ips := make([]net.IPNet, 0, n)
for i := 0; i < n; i++ {
pos := cur.Next()
if pos == nil {
panic("hit nil IP during IP generation")
}
ips = append(ips, net.IPNet{
IP: pos.IP,
Mask: net.CIDRMask(128, 128),
})
}
return ips
}
func panicf(format string, a ...interface{}) {
panic(fmt.Sprintf(format, a...))
}