2019-01-02 00:55:51 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
2018-05-03 13:04:00 +00:00
|
|
|
*
|
2020-05-02 08:08:26 +00:00
|
|
|
* Copyright (C) 2017-2020 WireGuard LLC. All Rights Reserved.
|
2018-05-03 13:04:00 +00:00
|
|
|
*/
|
|
|
|
|
2019-03-03 03:04:41 +00:00
|
|
|
package device
|
2018-03-08 15:44:27 +00:00
|
|
|
|
2019-05-29 16:18:20 +00:00
|
|
|
import (
|
|
|
|
"bytes"
|
2020-12-14 23:07:23 +00:00
|
|
|
"errors"
|
2020-07-30 16:20:49 +00:00
|
|
|
"fmt"
|
2020-12-14 22:12:56 +00:00
|
|
|
"io"
|
2019-10-12 16:44:05 +00:00
|
|
|
"net"
|
2020-12-14 23:07:23 +00:00
|
|
|
"sync"
|
2021-01-06 02:14:59 +00:00
|
|
|
"sync/atomic"
|
2019-05-29 16:18:20 +00:00
|
|
|
"testing"
|
2019-10-12 16:44:05 +00:00
|
|
|
"time"
|
|
|
|
|
2020-01-07 15:43:17 +00:00
|
|
|
"golang.zx2c4.com/wireguard/tun/tuntest"
|
2019-05-29 16:18:20 +00:00
|
|
|
)
|
2018-03-08 15:44:27 +00:00
|
|
|
|
2021-01-05 23:03:24 +00:00
|
|
|
func getFreePort(tb testing.TB) string {
|
2020-07-30 16:20:49 +00:00
|
|
|
l, err := net.ListenPacket("udp", "localhost:0")
|
|
|
|
if err != nil {
|
2021-01-05 23:03:24 +00:00
|
|
|
tb.Fatal(err)
|
2020-07-30 16:20:49 +00:00
|
|
|
}
|
|
|
|
defer l.Close()
|
|
|
|
return fmt.Sprintf("%d", l.LocalAddr().(*net.UDPAddr).Port)
|
|
|
|
}
|
|
|
|
|
2020-12-14 22:12:56 +00:00
|
|
|
// uapiCfg returns a reader that contains cfg formatted use with IpcSetOperation.
|
|
|
|
// cfg is a series of alternating key/value strings.
|
|
|
|
// uapiCfg exists because editors and humans like to insert
|
|
|
|
// whitespace into configs, which can cause failures, some of which are silent.
|
|
|
|
// For example, a leading blank newline causes the remainder
|
|
|
|
// of the config to be silently ignored.
|
|
|
|
func uapiCfg(cfg ...string) io.ReadSeeker {
|
|
|
|
if len(cfg)%2 != 0 {
|
|
|
|
panic("odd number of args to uapiReader")
|
|
|
|
}
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
for i, s := range cfg {
|
|
|
|
buf.WriteString(s)
|
|
|
|
sep := byte('\n')
|
|
|
|
if i%2 == 0 {
|
|
|
|
sep = '='
|
|
|
|
}
|
|
|
|
buf.WriteByte(sep)
|
|
|
|
}
|
|
|
|
return bytes.NewReader(buf.Bytes())
|
|
|
|
}
|
|
|
|
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
// genConfigs generates a pair of configs that connect to each other.
|
|
|
|
// The configs use distinct, probably-usable ports.
|
2021-01-05 23:03:24 +00:00
|
|
|
func genConfigs(tb testing.TB) (cfgs [2]io.Reader) {
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
var port1, port2 string
|
|
|
|
for port1 == port2 {
|
2021-01-05 23:03:24 +00:00
|
|
|
port1 = getFreePort(tb)
|
|
|
|
port2 = getFreePort(tb)
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
}
|
2020-12-14 22:12:56 +00:00
|
|
|
|
|
|
|
cfgs[0] = uapiCfg(
|
|
|
|
"private_key", "481eb0d8113a4a5da532d2c3e9c14b53c8454b34ab109676f6b58c2245e37b58",
|
|
|
|
"listen_port", port1,
|
|
|
|
"replace_peers", "true",
|
|
|
|
"public_key", "f70dbb6b1b92a1dde1c783b297016af3f572fef13b0abb16a2623d89a58e9725",
|
|
|
|
"protocol_version", "1",
|
|
|
|
"replace_allowed_ips", "true",
|
|
|
|
"allowed_ip", "1.0.0.2/32",
|
|
|
|
"endpoint", "127.0.0.1:"+port2,
|
|
|
|
)
|
|
|
|
cfgs[1] = uapiCfg(
|
|
|
|
"private_key", "98c7989b1661a0d64fd6af3502000f87716b7c4bbcf00d04fc6073aa7b539768",
|
|
|
|
"listen_port", port2,
|
|
|
|
"replace_peers", "true",
|
|
|
|
"public_key", "49e80929259cebdda4f322d6d2b1a6fad819d603acd26fd5d845e7a123036427",
|
|
|
|
"protocol_version", "1",
|
|
|
|
"replace_allowed_ips", "true",
|
|
|
|
"allowed_ip", "1.0.0.1/32",
|
|
|
|
"endpoint", "127.0.0.1:"+port1,
|
|
|
|
)
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-12-14 23:07:23 +00:00
|
|
|
// A testPair is a pair of testPeers.
|
|
|
|
type testPair [2]testPeer
|
|
|
|
|
|
|
|
// A testPeer is a peer used for testing.
|
|
|
|
type testPeer struct {
|
|
|
|
tun *tuntest.ChannelTUN
|
|
|
|
dev *Device
|
|
|
|
ip net.IP
|
|
|
|
}
|
|
|
|
|
|
|
|
type SendDirection bool
|
|
|
|
|
|
|
|
const (
|
|
|
|
Ping SendDirection = true
|
|
|
|
Pong SendDirection = false
|
|
|
|
)
|
|
|
|
|
2021-01-05 23:03:24 +00:00
|
|
|
func (pair *testPair) Send(tb testing.TB, ping SendDirection, done chan struct{}) {
|
|
|
|
tb.Helper()
|
2020-12-14 23:07:23 +00:00
|
|
|
p0, p1 := pair[0], pair[1]
|
|
|
|
if !ping {
|
|
|
|
// pong is the new ping
|
|
|
|
p0, p1 = p1, p0
|
|
|
|
}
|
|
|
|
msg := tuntest.Ping(p0.ip, p1.ip)
|
|
|
|
p1.tun.Outbound <- msg
|
|
|
|
timer := time.NewTimer(5 * time.Second)
|
|
|
|
defer timer.Stop()
|
|
|
|
var err error
|
|
|
|
select {
|
|
|
|
case msgRecv := <-p0.tun.Inbound:
|
|
|
|
if !bytes.Equal(msg, msgRecv) {
|
|
|
|
err = errors.New("ping did not transit correctly")
|
|
|
|
}
|
|
|
|
case <-timer.C:
|
|
|
|
err = errors.New("ping did not transit")
|
|
|
|
case <-done:
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// The error may have occurred because the test is done.
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
// Real error.
|
2021-01-05 23:03:24 +00:00
|
|
|
tb.Error(err)
|
2020-12-14 23:07:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// genTestPair creates a testPair.
|
2021-01-05 23:03:24 +00:00
|
|
|
func genTestPair(tb testing.TB) (pair testPair) {
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
const maxAttempts = 10
|
|
|
|
NextAttempt:
|
|
|
|
for i := 0; i < maxAttempts; i++ {
|
2021-01-05 23:03:24 +00:00
|
|
|
cfg := genConfigs(tb)
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
// Bring up a ChannelTun for each config.
|
2020-12-14 23:07:23 +00:00
|
|
|
for i := range pair {
|
|
|
|
p := &pair[i]
|
|
|
|
p.tun = tuntest.NewChannelTUN()
|
|
|
|
if i == 0 {
|
|
|
|
p.ip = net.ParseIP("1.0.0.1")
|
|
|
|
} else {
|
|
|
|
p.ip = net.ParseIP("1.0.0.2")
|
|
|
|
}
|
2021-01-06 00:04:38 +00:00
|
|
|
level := LogLevelDebug
|
|
|
|
if _, ok := tb.(*testing.B); ok && !testing.Verbose() {
|
|
|
|
level = LogLevelError
|
|
|
|
}
|
|
|
|
p.dev = NewDevice(p.tun.TUN(), NewLogger(level, fmt.Sprintf("dev%d: ", i)))
|
2020-12-14 23:07:23 +00:00
|
|
|
p.dev.Up()
|
|
|
|
if err := p.dev.IpcSetOperation(cfg[i]); err != nil {
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
// genConfigs attempted to pick ports that were free.
|
|
|
|
// There's a tiny window between genConfigs closing the port
|
|
|
|
// and us opening it, during which another process could
|
|
|
|
// start using it. We probably just lost that race.
|
|
|
|
// Try again from the beginning.
|
|
|
|
// If there's something permanent wrong,
|
|
|
|
// we'll see that when we run out of attempts.
|
2021-01-05 23:03:24 +00:00
|
|
|
tb.Logf("failed to configure device %d: %v", i, err)
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
continue NextAttempt
|
|
|
|
}
|
|
|
|
// The device might still not be up, e.g. due to an error
|
|
|
|
// in RoutineTUNEventReader's call to dev.Up that got swallowed.
|
|
|
|
// Assume it's due to a transient error (port in use), and retry.
|
2020-12-14 23:07:23 +00:00
|
|
|
if !p.dev.isUp.Get() {
|
2021-01-05 23:03:24 +00:00
|
|
|
tb.Logf("device %d did not come up, trying again", i)
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
continue NextAttempt
|
|
|
|
}
|
|
|
|
// The device is up. Close it when the test completes.
|
2021-01-05 23:03:24 +00:00
|
|
|
tb.Cleanup(p.dev.Close)
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
}
|
|
|
|
return // success
|
|
|
|
}
|
|
|
|
|
2021-01-05 23:03:24 +00:00
|
|
|
tb.Fatalf("genChannelTUNs: failed %d times", maxAttempts)
|
device: make test setup more robust
Picking two free ports to use for a test is difficult.
The free port we selected might no longer be free when we reach
for it a second time.
On my machine, this failure mode led to failures approximately
once per thousand test runs.
Since failures are rare, and threading through and checking for
all possible errors is complicated, fix this with a big hammer:
Retry if either device fails to come up.
Also, if you accidentally pick the same port twice, delightful confusion ensues.
The handshake failures manifest as crypto errors, which look scary.
Again, fix with retries.
To make these retries easier to implement, use testing.T.Cleanup
instead of defer to close devices. This requires Go 1.14.
Update go.mod accordingly. Go 1.13 is no longer supported anyway.
With these fixes, 'go test -race' ran 100,000 times without failure.
Signed-off-by: Josh Bleecher Snyder <josh@tailscale.com>
2020-12-09 03:23:56 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestTwoDevicePing(t *testing.T) {
|
2020-12-14 23:07:23 +00:00
|
|
|
pair := genTestPair(t)
|
2019-10-12 16:44:05 +00:00
|
|
|
t.Run("ping 1.0.0.1", func(t *testing.T) {
|
2020-12-14 23:07:23 +00:00
|
|
|
pair.Send(t, Ping, nil)
|
2019-10-12 16:44:05 +00:00
|
|
|
})
|
|
|
|
t.Run("ping 1.0.0.2", func(t *testing.T) {
|
2020-12-14 23:07:23 +00:00
|
|
|
pair.Send(t, Pong, nil)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// TestConcurrencySafety does other things concurrently with tunnel use.
|
|
|
|
// It is intended to be used with the race detector to catch data races.
|
|
|
|
func TestConcurrencySafety(t *testing.T) {
|
|
|
|
pair := genTestPair(t)
|
|
|
|
done := make(chan struct{})
|
|
|
|
|
|
|
|
const warmupIters = 10
|
|
|
|
var warmup sync.WaitGroup
|
|
|
|
warmup.Add(warmupIters)
|
|
|
|
go func() {
|
|
|
|
// Send data continuously back and forth until we're done.
|
|
|
|
// Note that we may continue to attempt to send data
|
|
|
|
// even after done is closed.
|
|
|
|
i := warmupIters
|
|
|
|
for ping := Ping; ; ping = !ping {
|
|
|
|
pair.Send(t, ping, done)
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
if i > 0 {
|
|
|
|
warmup.Done()
|
|
|
|
i--
|
2019-10-12 16:44:05 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-14 23:07:23 +00:00
|
|
|
}()
|
|
|
|
warmup.Wait()
|
|
|
|
|
2020-12-15 23:02:13 +00:00
|
|
|
applyCfg := func(cfg io.ReadSeeker) {
|
|
|
|
cfg.Seek(0, io.SeekStart)
|
|
|
|
err := pair[0].dev.IpcSetOperation(cfg)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-14 23:28:52 +00:00
|
|
|
// Change persistent_keepalive_interval concurrently with tunnel use.
|
|
|
|
t.Run("persistentKeepaliveInterval", func(t *testing.T) {
|
|
|
|
cfg := uapiCfg(
|
|
|
|
"public_key", "f70dbb6b1b92a1dde1c783b297016af3f572fef13b0abb16a2623d89a58e9725",
|
|
|
|
"persistent_keepalive_interval", "1",
|
|
|
|
)
|
|
|
|
for i := 0; i < 1000; i++ {
|
2020-12-15 23:02:13 +00:00
|
|
|
applyCfg(cfg)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// Change private keys concurrently with tunnel use.
|
|
|
|
t.Run("privateKey", func(t *testing.T) {
|
|
|
|
bad := uapiCfg("private_key", "7777777777777777777777777777777777777777777777777777777777777777")
|
|
|
|
good := uapiCfg("private_key", "481eb0d8113a4a5da532d2c3e9c14b53c8454b34ab109676f6b58c2245e37b58")
|
|
|
|
// Set iters to a large number like 1000 to flush out data races quickly.
|
|
|
|
// Don't leave it large. That can cause logical races
|
|
|
|
// in which the handshake is interleaved with key changes
|
|
|
|
// such that the private key appears to be unchanging but
|
|
|
|
// other state gets reset, which can cause handshake failures like
|
|
|
|
// "Received packet with invalid mac1".
|
|
|
|
const iters = 1
|
|
|
|
for i := 0; i < iters; i++ {
|
|
|
|
applyCfg(bad)
|
|
|
|
applyCfg(good)
|
2020-12-14 23:28:52 +00:00
|
|
|
}
|
|
|
|
})
|
2020-12-14 23:07:23 +00:00
|
|
|
|
|
|
|
close(done)
|
2019-10-12 16:44:05 +00:00
|
|
|
}
|
2018-03-08 15:44:27 +00:00
|
|
|
|
2019-05-29 16:18:20 +00:00
|
|
|
func assertNil(t *testing.T, err error) {
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-03 20:44:06 +00:00
|
|
|
func assertEqual(t *testing.T, a, b []byte) {
|
|
|
|
if !bytes.Equal(a, b) {
|
2019-05-29 16:18:20 +00:00
|
|
|
t.Fatal(a, "!=", b)
|
|
|
|
}
|
|
|
|
}
|
2019-10-12 16:44:05 +00:00
|
|
|
|
|
|
|
func randDevice(t *testing.T) *Device {
|
|
|
|
sk, err := newPrivateKey()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
tun := newDummyTUN("dummy")
|
|
|
|
logger := NewLogger(LogLevelError, "")
|
|
|
|
device := NewDevice(tun, logger)
|
|
|
|
device.SetPrivateKey(sk)
|
|
|
|
return device
|
|
|
|
}
|
2021-01-06 02:14:59 +00:00
|
|
|
|
|
|
|
func BenchmarkLatency(b *testing.B) {
|
|
|
|
pair := genTestPair(b)
|
|
|
|
|
|
|
|
// Establish a connection.
|
|
|
|
pair.Send(b, Ping, nil)
|
|
|
|
pair.Send(b, Pong, nil)
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
pair.Send(b, Ping, nil)
|
|
|
|
pair.Send(b, Pong, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkThroughput(b *testing.B) {
|
|
|
|
pair := genTestPair(b)
|
|
|
|
|
|
|
|
// Establish a connection.
|
|
|
|
pair.Send(b, Ping, nil)
|
|
|
|
pair.Send(b, Pong, nil)
|
|
|
|
|
|
|
|
// Measure how long it takes to receive b.N packets,
|
|
|
|
// starting when we receive the first packet.
|
|
|
|
var recv uint64
|
|
|
|
var elapsed time.Duration
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
var start time.Time
|
|
|
|
for {
|
|
|
|
<-pair[0].tun.Inbound
|
|
|
|
new := atomic.AddUint64(&recv, 1)
|
|
|
|
if new == 1 {
|
|
|
|
start = time.Now()
|
|
|
|
}
|
|
|
|
// Careful! Don't change this to else if; b.N can be equal to 1.
|
|
|
|
if new == uint64(b.N) {
|
|
|
|
elapsed = time.Since(start)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Send packets as fast as we can until we've received enough.
|
|
|
|
ping := tuntest.Ping(pair[0].ip, pair[1].ip)
|
|
|
|
pingc := pair[1].tun.Outbound
|
|
|
|
var sent uint64
|
|
|
|
for atomic.LoadUint64(&recv) != uint64(b.N) {
|
|
|
|
sent++
|
|
|
|
pingc <- ping
|
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
|
|
|
b.ReportMetric(float64(elapsed)/float64(b.N), "ns/op")
|
|
|
|
b.ReportMetric(1-float64(b.N)/float64(sent), "packet-loss")
|
|
|
|
}
|