2020-02-05 22:16:58 +00:00
|
|
|
// Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package ipn
|
|
|
|
|
|
|
|
import (
|
2021-04-01 04:35:21 +00:00
|
|
|
"encoding/json"
|
2020-11-02 16:33:34 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2020-11-22 00:34:26 +00:00
|
|
|
"io/ioutil"
|
2020-11-02 16:33:34 +00:00
|
|
|
"os"
|
2020-02-17 23:01:23 +00:00
|
|
|
"reflect"
|
2021-04-01 04:35:21 +00:00
|
|
|
"strings"
|
2020-02-05 22:16:58 +00:00
|
|
|
"testing"
|
2020-11-02 16:33:34 +00:00
|
|
|
"time"
|
2020-02-05 22:16:58 +00:00
|
|
|
|
2020-12-24 20:33:55 +00:00
|
|
|
"inet.af/netaddr"
|
2021-02-25 05:18:08 +00:00
|
|
|
"tailscale.com/tailcfg"
|
Add tstest.PanicOnLog(), and fix various problems detected by this.
If a test calls log.Printf, 'go test' horrifyingly rearranges the
output to no longer be in chronological order, which makes debugging
virtually impossible. Let's stop that from happening by making
log.Printf panic if called from any module, no matter how deep, during
tests.
This required us to change the default error handler in at least one
http.Server, as well as plumbing a bunch of logf functions around,
especially in magicsock and wgengine, but also in logtail and backoff.
To add insult to injury, 'go test' also rearranges the output when a
parent test has multiple sub-tests (all the sub-test's t.Logf is always
printed after all the parent tests t.Logf), so we need to screw around
with a special Logf that can point at the "current" t (current_t.Logf)
in some places. Probably our entire way of using subtests is wrong,
since 'go test' would probably like to run them all in parallel if you
called t.Parallel(), but it definitely can't because the're all
manipulating the shared state created by the parent test. They should
probably all be separate toplevel tests instead, with common
setup/teardown logic. But that's a job for another time.
Signed-off-by: Avery Pennarun <apenwarr@tailscale.com>
2020-05-14 02:59:54 +00:00
|
|
|
"tailscale.com/tstest"
|
2021-02-05 23:23:01 +00:00
|
|
|
"tailscale.com/types/persist"
|
2021-02-04 21:12:42 +00:00
|
|
|
"tailscale.com/types/preftype"
|
2020-12-30 01:22:56 +00:00
|
|
|
"tailscale.com/types/wgkey"
|
2020-02-05 22:16:58 +00:00
|
|
|
)
|
|
|
|
|
2020-02-17 23:01:23 +00:00
|
|
|
func fieldsOf(t reflect.Type) (fields []string) {
|
|
|
|
for i := 0; i < t.NumField(); i++ {
|
|
|
|
fields = append(fields, t.Field(i).Name)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefsEqual(t *testing.T) {
|
Add tstest.PanicOnLog(), and fix various problems detected by this.
If a test calls log.Printf, 'go test' horrifyingly rearranges the
output to no longer be in chronological order, which makes debugging
virtually impossible. Let's stop that from happening by making
log.Printf panic if called from any module, no matter how deep, during
tests.
This required us to change the default error handler in at least one
http.Server, as well as plumbing a bunch of logf functions around,
especially in magicsock and wgengine, but also in logtail and backoff.
To add insult to injury, 'go test' also rearranges the output when a
parent test has multiple sub-tests (all the sub-test's t.Logf is always
printed after all the parent tests t.Logf), so we need to screw around
with a special Logf that can point at the "current" t (current_t.Logf)
in some places. Probably our entire way of using subtests is wrong,
since 'go test' would probably like to run them all in parallel if you
called t.Parallel(), but it definitely can't because the're all
manipulating the shared state created by the parent test. They should
probably all be separate toplevel tests instead, with common
setup/teardown logic. But that's a job for another time.
Signed-off-by: Avery Pennarun <apenwarr@tailscale.com>
2020-05-14 02:59:54 +00:00
|
|
|
tstest.PanicOnLog()
|
|
|
|
|
2021-01-21 01:24:16 +00:00
|
|
|
prefsHandles := []string{"ControlURL", "RouteAll", "AllowSingleHosts", "ExitNodeID", "ExitNodeIP", "CorpDNS", "WantRunning", "ShieldsUp", "AdvertiseTags", "Hostname", "OSVersion", "DeviceModel", "NotepadURLs", "ForceDaemon", "AdvertiseRoutes", "NoSNAT", "NetfilterMode", "Persist"}
|
2020-02-17 23:01:23 +00:00
|
|
|
if have := fieldsOf(reflect.TypeOf(Prefs{})); !reflect.DeepEqual(have, prefsHandles) {
|
|
|
|
t.Errorf("Prefs.Equal check might be out of sync\nfields: %q\nhandled: %q\n",
|
|
|
|
have, prefsHandles)
|
|
|
|
}
|
|
|
|
|
2020-12-24 20:33:55 +00:00
|
|
|
nets := func(strs ...string) (ns []netaddr.IPPrefix) {
|
2020-02-17 23:01:23 +00:00
|
|
|
for _, s := range strs {
|
2020-12-24 20:33:55 +00:00
|
|
|
n, err := netaddr.ParseIPPrefix(s)
|
2020-02-17 23:01:23 +00:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-03-17 03:27:00 +00:00
|
|
|
ns = append(ns, n)
|
2020-02-17 23:01:23 +00:00
|
|
|
}
|
|
|
|
return ns
|
|
|
|
}
|
|
|
|
tests := []struct {
|
|
|
|
a, b *Prefs
|
|
|
|
want bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
&Prefs{},
|
|
|
|
nil,
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
nil,
|
|
|
|
&Prefs{},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{},
|
|
|
|
&Prefs{},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-02-19 05:03:22 +00:00
|
|
|
{
|
|
|
|
&Prefs{ControlURL: "https://login.tailscale.com"},
|
|
|
|
&Prefs{ControlURL: "https://login.private.co"},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{ControlURL: "https://login.tailscale.com"},
|
|
|
|
&Prefs{ControlURL: "https://login.tailscale.com"},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-02-17 23:01:23 +00:00
|
|
|
{
|
|
|
|
&Prefs{RouteAll: true},
|
|
|
|
&Prefs{RouteAll: false},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{RouteAll: true},
|
|
|
|
&Prefs{RouteAll: true},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&Prefs{AllowSingleHosts: true},
|
|
|
|
&Prefs{AllowSingleHosts: false},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{AllowSingleHosts: true},
|
|
|
|
&Prefs{AllowSingleHosts: true},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2021-01-21 01:24:16 +00:00
|
|
|
{
|
|
|
|
&Prefs{ExitNodeID: "n1234"},
|
|
|
|
&Prefs{},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{ExitNodeID: "n1234"},
|
|
|
|
&Prefs{ExitNodeID: "n1234"},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&Prefs{ExitNodeIP: netaddr.MustParseIP("1.2.3.4")},
|
|
|
|
&Prefs{},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{ExitNodeIP: netaddr.MustParseIP("1.2.3.4")},
|
|
|
|
&Prefs{ExitNodeIP: netaddr.MustParseIP("1.2.3.4")},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-02-17 23:01:23 +00:00
|
|
|
{
|
|
|
|
&Prefs{CorpDNS: true},
|
|
|
|
&Prefs{CorpDNS: false},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{CorpDNS: true},
|
|
|
|
&Prefs{CorpDNS: true},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&Prefs{WantRunning: true},
|
|
|
|
&Prefs{WantRunning: false},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{WantRunning: true},
|
|
|
|
&Prefs{WantRunning: true},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-05-11 20:16:52 +00:00
|
|
|
{
|
|
|
|
&Prefs{NoSNAT: true},
|
|
|
|
&Prefs{NoSNAT: false},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{NoSNAT: true},
|
|
|
|
&Prefs{NoSNAT: true},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-06-02 16:12:05 +00:00
|
|
|
{
|
|
|
|
&Prefs{Hostname: "android-host01"},
|
|
|
|
&Prefs{Hostname: "android-host02"},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{Hostname: ""},
|
|
|
|
&Prefs{Hostname: ""},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-02-17 23:01:23 +00:00
|
|
|
{
|
|
|
|
&Prefs{NotepadURLs: true},
|
|
|
|
&Prefs{NotepadURLs: false},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{NotepadURLs: true},
|
|
|
|
&Prefs{NotepadURLs: true},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2020-04-29 06:37:35 +00:00
|
|
|
&Prefs{ShieldsUp: true},
|
|
|
|
&Prefs{ShieldsUp: false},
|
2020-02-17 23:01:23 +00:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
2020-04-29 06:37:35 +00:00
|
|
|
&Prefs{ShieldsUp: true},
|
|
|
|
&Prefs{ShieldsUp: true},
|
2020-02-17 23:01:23 +00:00
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
&Prefs{AdvertiseRoutes: nil},
|
2020-12-24 20:33:55 +00:00
|
|
|
&Prefs{AdvertiseRoutes: []netaddr.IPPrefix{}},
|
2020-02-17 23:01:23 +00:00
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
2020-12-24 20:33:55 +00:00
|
|
|
&Prefs{AdvertiseRoutes: []netaddr.IPPrefix{}},
|
|
|
|
&Prefs{AdvertiseRoutes: []netaddr.IPPrefix{}},
|
2020-02-17 23:01:23 +00:00
|
|
|
true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{AdvertiseRoutes: nets("192.168.0.0/24", "10.1.0.0/16")},
|
|
|
|
&Prefs{AdvertiseRoutes: nets("192.168.1.0/24", "10.2.0.0/16")},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{AdvertiseRoutes: nets("192.168.0.0/24", "10.1.0.0/16")},
|
|
|
|
&Prefs{AdvertiseRoutes: nets("192.168.0.0/24", "10.2.0.0/16")},
|
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
&Prefs{AdvertiseRoutes: nets("192.168.0.0/24", "10.1.0.0/16")},
|
|
|
|
&Prefs{AdvertiseRoutes: nets("192.168.0.0/24", "10.1.0.0/16")},
|
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-05-13 22:35:22 +00:00
|
|
|
{
|
2021-02-04 21:12:42 +00:00
|
|
|
&Prefs{NetfilterMode: preftype.NetfilterOff},
|
|
|
|
&Prefs{NetfilterMode: preftype.NetfilterOn},
|
2020-05-13 22:35:22 +00:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
2021-02-04 21:12:42 +00:00
|
|
|
&Prefs{NetfilterMode: preftype.NetfilterOn},
|
|
|
|
&Prefs{NetfilterMode: preftype.NetfilterOn},
|
2020-05-13 22:35:22 +00:00
|
|
|
true,
|
|
|
|
},
|
|
|
|
|
2020-02-17 23:01:23 +00:00
|
|
|
{
|
2021-02-05 23:23:01 +00:00
|
|
|
&Prefs{Persist: &persist.Persist{}},
|
|
|
|
&Prefs{Persist: &persist.Persist{LoginName: "dave"}},
|
2020-02-17 23:01:23 +00:00
|
|
|
false,
|
|
|
|
},
|
|
|
|
{
|
2021-02-05 23:23:01 +00:00
|
|
|
&Prefs{Persist: &persist.Persist{LoginName: "dave"}},
|
|
|
|
&Prefs{Persist: &persist.Persist{LoginName: "dave"}},
|
2020-02-17 23:01:23 +00:00
|
|
|
true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
|
|
got := tt.a.Equals(tt.b)
|
|
|
|
if got != tt.want {
|
|
|
|
t.Errorf("%d. Equal = %v; want %v", i, got, tt.want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-05 22:16:58 +00:00
|
|
|
func checkPrefs(t *testing.T, p Prefs) {
|
|
|
|
var err error
|
2020-02-20 19:07:00 +00:00
|
|
|
var p2, p2c *Prefs
|
|
|
|
var p2b *Prefs
|
2020-02-05 22:16:58 +00:00
|
|
|
|
|
|
|
pp := p.Pretty()
|
|
|
|
if pp == "" {
|
|
|
|
t.Fatalf("default p.Pretty() failed\n")
|
|
|
|
}
|
|
|
|
t.Logf("\npp: %#v\n", pp)
|
|
|
|
b := p.ToBytes()
|
|
|
|
if len(b) == 0 {
|
|
|
|
t.Fatalf("default p.ToBytes() failed\n")
|
|
|
|
}
|
2020-02-11 07:28:44 +00:00
|
|
|
if !p.Equals(&p) {
|
2020-02-05 22:16:58 +00:00
|
|
|
t.Fatalf("p != p\n")
|
|
|
|
}
|
2020-02-27 20:20:29 +00:00
|
|
|
p2 = p.Clone()
|
2020-02-05 22:16:58 +00:00
|
|
|
p2.RouteAll = true
|
2020-02-20 19:07:00 +00:00
|
|
|
if p.Equals(p2) {
|
2020-02-05 22:16:58 +00:00
|
|
|
t.Fatalf("p == p2\n")
|
|
|
|
}
|
|
|
|
p2b, err = PrefsFromBytes(p2.ToBytes(), false)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("PrefsFromBytes(p2) failed\n")
|
|
|
|
}
|
|
|
|
p2p := p2.Pretty()
|
|
|
|
p2bp := p2b.Pretty()
|
|
|
|
t.Logf("\np2p: %#v\np2bp: %#v\n", p2p, p2bp)
|
|
|
|
if p2p != p2bp {
|
|
|
|
t.Fatalf("p2p != p2bp\n%#v\n%#v\n", p2p, p2bp)
|
|
|
|
}
|
2020-02-20 19:07:00 +00:00
|
|
|
if !p2.Equals(p2b) {
|
2020-02-05 22:16:58 +00:00
|
|
|
t.Fatalf("p2 != p2b\n%#v\n%#v\n", p2, p2b)
|
|
|
|
}
|
2020-02-27 20:20:29 +00:00
|
|
|
p2c = p2.Clone()
|
2020-02-20 19:07:00 +00:00
|
|
|
if !p2b.Equals(p2c) {
|
2020-02-05 22:16:58 +00:00
|
|
|
t.Fatalf("p2b != p2c\n")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBasicPrefs(t *testing.T) {
|
Add tstest.PanicOnLog(), and fix various problems detected by this.
If a test calls log.Printf, 'go test' horrifyingly rearranges the
output to no longer be in chronological order, which makes debugging
virtually impossible. Let's stop that from happening by making
log.Printf panic if called from any module, no matter how deep, during
tests.
This required us to change the default error handler in at least one
http.Server, as well as plumbing a bunch of logf functions around,
especially in magicsock and wgengine, but also in logtail and backoff.
To add insult to injury, 'go test' also rearranges the output when a
parent test has multiple sub-tests (all the sub-test's t.Logf is always
printed after all the parent tests t.Logf), so we need to screw around
with a special Logf that can point at the "current" t (current_t.Logf)
in some places. Probably our entire way of using subtests is wrong,
since 'go test' would probably like to run them all in parallel if you
called t.Parallel(), but it definitely can't because the're all
manipulating the shared state created by the parent test. They should
probably all be separate toplevel tests instead, with common
setup/teardown logic. But that's a job for another time.
Signed-off-by: Avery Pennarun <apenwarr@tailscale.com>
2020-05-14 02:59:54 +00:00
|
|
|
tstest.PanicOnLog()
|
|
|
|
|
2020-02-19 05:03:22 +00:00
|
|
|
p := Prefs{
|
|
|
|
ControlURL: "https://login.tailscale.com",
|
|
|
|
}
|
2020-02-05 22:16:58 +00:00
|
|
|
checkPrefs(t, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefsPersist(t *testing.T) {
|
Add tstest.PanicOnLog(), and fix various problems detected by this.
If a test calls log.Printf, 'go test' horrifyingly rearranges the
output to no longer be in chronological order, which makes debugging
virtually impossible. Let's stop that from happening by making
log.Printf panic if called from any module, no matter how deep, during
tests.
This required us to change the default error handler in at least one
http.Server, as well as plumbing a bunch of logf functions around,
especially in magicsock and wgengine, but also in logtail and backoff.
To add insult to injury, 'go test' also rearranges the output when a
parent test has multiple sub-tests (all the sub-test's t.Logf is always
printed after all the parent tests t.Logf), so we need to screw around
with a special Logf that can point at the "current" t (current_t.Logf)
in some places. Probably our entire way of using subtests is wrong,
since 'go test' would probably like to run them all in parallel if you
called t.Parallel(), but it definitely can't because the're all
manipulating the shared state created by the parent test. They should
probably all be separate toplevel tests instead, with common
setup/teardown logic. But that's a job for another time.
Signed-off-by: Avery Pennarun <apenwarr@tailscale.com>
2020-05-14 02:59:54 +00:00
|
|
|
tstest.PanicOnLog()
|
|
|
|
|
2021-02-05 23:23:01 +00:00
|
|
|
c := persist.Persist{
|
2020-02-05 22:16:58 +00:00
|
|
|
LoginName: "test@example.com",
|
|
|
|
}
|
|
|
|
p := Prefs{
|
2020-02-19 05:03:22 +00:00
|
|
|
ControlURL: "https://login.tailscale.com",
|
|
|
|
CorpDNS: true,
|
|
|
|
Persist: &c,
|
2020-02-05 22:16:58 +00:00
|
|
|
}
|
|
|
|
checkPrefs(t, p)
|
|
|
|
}
|
ipn, ipnserver, cmd/tailscale: add "server mode" support on Windows
This partially (but not yet fully) migrates Windows to tailscaled's
StateStore storage system.
This adds a new bool Pref, ForceDaemon, defined as:
// ForceDaemon specifies whether a platform that normally
// operates in "client mode" (that is, requires an active user
// logged in with the GUI app running) should keep running after the
// GUI ends and/or the user logs out.
//
// The only current applicable platform is Windows. This
// forced Windows to go into "server mode" where Tailscale is
// running even with no users logged in. This might also be
// used for macOS in the future. This setting has no effect
// for Linux/etc, which always operate in daemon mode.
Then, when ForceDaemon becomes true, we now write use the StateStore
to track which user started it in server mode, and store their prefs
under that key.
The ipnserver validates the connections/identities and informs that
LocalBackend which userid is currently in charge.
The GUI can then enable/disable server mode at runtime, without using
the CLI.
But the "tailscale up" CLI was also fixed, so Windows users can use
authkeys or ACL tags, etc.
Updates #275
2020-10-12 21:28:21 +00:00
|
|
|
|
|
|
|
func TestPrefsPretty(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
p Prefs
|
|
|
|
os string
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Prefs{},
|
|
|
|
"linux",
|
|
|
|
"Prefs{ra=false mesh=false dns=false want=false routes=[] nf=off Persist=nil}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{},
|
|
|
|
"windows",
|
|
|
|
"Prefs{ra=false mesh=false dns=false want=false Persist=nil}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{ShieldsUp: true},
|
|
|
|
"windows",
|
|
|
|
"Prefs{ra=false mesh=false dns=false want=false shields=true Persist=nil}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{AllowSingleHosts: true},
|
|
|
|
"windows",
|
|
|
|
"Prefs{ra=false dns=false want=false Persist=nil}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{
|
|
|
|
NotepadURLs: true,
|
|
|
|
AllowSingleHosts: true,
|
|
|
|
},
|
|
|
|
"windows",
|
|
|
|
"Prefs{ra=false dns=false want=false notepad=true Persist=nil}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{
|
|
|
|
AllowSingleHosts: true,
|
|
|
|
WantRunning: true,
|
|
|
|
ForceDaemon: true, // server mode
|
|
|
|
},
|
|
|
|
"windows",
|
|
|
|
"Prefs{ra=false dns=false want=true server=true Persist=nil}",
|
|
|
|
},
|
2020-11-04 18:24:33 +00:00
|
|
|
{
|
|
|
|
Prefs{
|
|
|
|
AllowSingleHosts: true,
|
|
|
|
WantRunning: true,
|
|
|
|
ControlURL: "http://localhost:1234",
|
|
|
|
AdvertiseTags: []string{"tag:foo", "tag:bar"},
|
|
|
|
},
|
|
|
|
"darwin",
|
|
|
|
`Prefs{ra=false dns=false want=true tags=tag:foo,tag:bar url="http://localhost:1234" Persist=nil}`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{
|
2021-02-05 23:23:01 +00:00
|
|
|
Persist: &persist.Persist{},
|
2020-11-04 18:24:33 +00:00
|
|
|
},
|
|
|
|
"linux",
|
|
|
|
`Prefs{ra=false mesh=false dns=false want=false routes=[] nf=off Persist{lm=, o=, n= u=""}}`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{
|
2021-02-05 23:23:01 +00:00
|
|
|
Persist: &persist.Persist{
|
2020-12-30 01:22:56 +00:00
|
|
|
PrivateNodeKey: wgkey.Private{1: 1},
|
2020-11-04 18:24:33 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
"linux",
|
|
|
|
`Prefs{ra=false mesh=false dns=false want=false routes=[] nf=off Persist{lm=, o=, n=[B1VKl] u=""}}`,
|
|
|
|
},
|
2021-02-25 05:18:08 +00:00
|
|
|
{
|
|
|
|
Prefs{
|
|
|
|
ExitNodeIP: netaddr.MustParseIP("1.2.3.4"),
|
|
|
|
},
|
|
|
|
"linux",
|
|
|
|
`Prefs{ra=false mesh=false dns=false want=false exit=1.2.3.4 routes=[] nf=off Persist=nil}`,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Prefs{
|
|
|
|
ExitNodeID: tailcfg.StableNodeID("myNodeABC"),
|
|
|
|
},
|
|
|
|
"linux",
|
|
|
|
`Prefs{ra=false mesh=false dns=false want=false exit=myNodeABC routes=[] nf=off Persist=nil}`,
|
|
|
|
},
|
ipn, ipnserver, cmd/tailscale: add "server mode" support on Windows
This partially (but not yet fully) migrates Windows to tailscaled's
StateStore storage system.
This adds a new bool Pref, ForceDaemon, defined as:
// ForceDaemon specifies whether a platform that normally
// operates in "client mode" (that is, requires an active user
// logged in with the GUI app running) should keep running after the
// GUI ends and/or the user logs out.
//
// The only current applicable platform is Windows. This
// forced Windows to go into "server mode" where Tailscale is
// running even with no users logged in. This might also be
// used for macOS in the future. This setting has no effect
// for Linux/etc, which always operate in daemon mode.
Then, when ForceDaemon becomes true, we now write use the StateStore
to track which user started it in server mode, and store their prefs
under that key.
The ipnserver validates the connections/identities and informs that
LocalBackend which userid is currently in charge.
The GUI can then enable/disable server mode at runtime, without using
the CLI.
But the "tailscale up" CLI was also fixed, so Windows users can use
authkeys or ACL tags, etc.
Updates #275
2020-10-12 21:28:21 +00:00
|
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
|
|
got := tt.p.pretty(tt.os)
|
|
|
|
if got != tt.want {
|
|
|
|
t.Errorf("%d. wrong String:\n got: %s\nwant: %s\n", i, got, tt.want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-02 16:33:34 +00:00
|
|
|
|
|
|
|
func TestLoadPrefsNotExist(t *testing.T) {
|
|
|
|
bogusFile := fmt.Sprintf("/tmp/not-exist-%d", time.Now().UnixNano())
|
|
|
|
|
|
|
|
p, err := LoadPrefs(bogusFile)
|
|
|
|
if errors.Is(err, os.ErrNotExist) {
|
|
|
|
// expected.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.Fatalf("unexpected prefs=%#v, err=%v", p, err)
|
|
|
|
}
|
2020-11-22 00:34:26 +00:00
|
|
|
|
|
|
|
// TestLoadPrefsFileWithZeroInIt verifies that LoadPrefs hanldes corrupted input files.
|
|
|
|
// See issue #954 for details.
|
|
|
|
func TestLoadPrefsFileWithZeroInIt(t *testing.T) {
|
|
|
|
f, err := ioutil.TempFile("", "TestLoadPrefsFileWithZeroInIt")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
path := f.Name()
|
|
|
|
if _, err := f.Write(jsonEscapedZero); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
f.Close()
|
|
|
|
defer os.Remove(path)
|
|
|
|
|
|
|
|
p, err := LoadPrefs(path)
|
|
|
|
if errors.Is(err, os.ErrNotExist) {
|
|
|
|
// expected.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.Fatalf("unexpected prefs=%#v, err=%v", p, err)
|
|
|
|
}
|
2021-04-01 04:35:21 +00:00
|
|
|
|
|
|
|
func TestMaskedPrefsFields(t *testing.T) {
|
|
|
|
have := map[string]bool{}
|
|
|
|
for _, f := range fieldsOf(reflect.TypeOf(Prefs{})) {
|
|
|
|
if f == "Persist" {
|
|
|
|
// This one can't be edited.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
have[f] = true
|
|
|
|
}
|
|
|
|
for _, f := range fieldsOf(reflect.TypeOf(MaskedPrefs{})) {
|
|
|
|
if f == "Prefs" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !strings.HasSuffix(f, "Set") {
|
|
|
|
t.Errorf("unexpected non-/Set$/ field %q", f)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
bare := strings.TrimSuffix(f, "Set")
|
|
|
|
_, ok := have[bare]
|
|
|
|
if !ok {
|
|
|
|
t.Errorf("no corresponding Prefs.%s field for MaskedPrefs.%s", bare, f)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
delete(have, bare)
|
|
|
|
}
|
|
|
|
for f := range have {
|
|
|
|
t.Errorf("missing MaskedPrefs.%sSet for Prefs.%s", f, f)
|
|
|
|
}
|
|
|
|
|
|
|
|
// And also make sure they line up in the right order, which
|
|
|
|
// ApplyEdits assumes.
|
|
|
|
pt := reflect.TypeOf(Prefs{})
|
|
|
|
mt := reflect.TypeOf(MaskedPrefs{})
|
|
|
|
for i := 0; i < mt.NumField(); i++ {
|
|
|
|
name := mt.Field(i).Name
|
|
|
|
if i == 0 {
|
|
|
|
if name != "Prefs" {
|
|
|
|
t.Errorf("first field of MaskedPrefs should be Prefs")
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
prefName := pt.Field(i - 1).Name
|
|
|
|
if prefName+"Set" != name {
|
|
|
|
t.Errorf("MaskedField[%d] = %s; want %sSet", i-1, name, prefName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefsApplyEdits(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
name string
|
|
|
|
prefs *Prefs
|
|
|
|
edit *MaskedPrefs
|
|
|
|
want *Prefs
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "no_change",
|
|
|
|
prefs: &Prefs{
|
|
|
|
Hostname: "foo",
|
|
|
|
},
|
|
|
|
edit: &MaskedPrefs{},
|
|
|
|
want: &Prefs{
|
|
|
|
Hostname: "foo",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "set1_decoy1",
|
|
|
|
prefs: &Prefs{
|
|
|
|
Hostname: "foo",
|
|
|
|
},
|
|
|
|
edit: &MaskedPrefs{
|
|
|
|
Prefs: Prefs{
|
|
|
|
Hostname: "bar",
|
|
|
|
DeviceModel: "ignore-this", // not set
|
|
|
|
},
|
|
|
|
HostnameSet: true,
|
|
|
|
},
|
|
|
|
want: &Prefs{
|
|
|
|
Hostname: "bar",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "set_several",
|
|
|
|
prefs: &Prefs{},
|
|
|
|
edit: &MaskedPrefs{
|
|
|
|
Prefs: Prefs{
|
|
|
|
Hostname: "bar",
|
|
|
|
DeviceModel: "galaxybrain",
|
|
|
|
},
|
|
|
|
HostnameSet: true,
|
|
|
|
DeviceModelSet: true,
|
|
|
|
},
|
|
|
|
want: &Prefs{
|
|
|
|
Hostname: "bar",
|
|
|
|
DeviceModel: "galaxybrain",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
|
|
got := tt.prefs.Clone()
|
|
|
|
got.ApplyEdits(tt.edit)
|
|
|
|
if !got.Equals(tt.want) {
|
|
|
|
gotj, _ := json.Marshal(got)
|
|
|
|
wantj, _ := json.Marshal(tt.want)
|
|
|
|
t.Errorf("fail.\n got: %s\nwant: %s\n", gotj, wantj)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMaskedPrefsPretty(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
m *MaskedPrefs
|
|
|
|
want string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
m: &MaskedPrefs{},
|
|
|
|
want: "MaskedPrefs{}",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
m: &MaskedPrefs{
|
|
|
|
Prefs: Prefs{
|
|
|
|
Hostname: "bar",
|
|
|
|
DeviceModel: "galaxybrain",
|
|
|
|
AllowSingleHosts: true,
|
|
|
|
RouteAll: false,
|
|
|
|
},
|
|
|
|
RouteAllSet: true,
|
|
|
|
HostnameSet: true,
|
|
|
|
DeviceModelSet: true,
|
|
|
|
},
|
|
|
|
want: `MaskedPrefs{RouteAll=false Hostname="bar" DeviceModel="galaxybrain"}`,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for i, tt := range tests {
|
|
|
|
got := tt.m.Pretty()
|
|
|
|
if got != tt.want {
|
|
|
|
t.Errorf("%d.\n got: %#q\nwant: %#q\n", i, got, tt.want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|