mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-10-28 10:51:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			1327 lines
		
	
	
		
			35 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			1327 lines
		
	
	
		
			35 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package integration
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"net/netip"
 | 
						|
	"strings"
 | 
						|
	"testing"
 | 
						|
 | 
						|
	"github.com/google/go-cmp/cmp"
 | 
						|
	"github.com/google/go-cmp/cmp/cmpopts"
 | 
						|
	policyv2 "github.com/juanfont/headscale/hscontrol/policy/v2"
 | 
						|
	"github.com/juanfont/headscale/hscontrol/types"
 | 
						|
	"github.com/juanfont/headscale/integration/hsic"
 | 
						|
	"github.com/juanfont/headscale/integration/tsic"
 | 
						|
	"github.com/stretchr/testify/assert"
 | 
						|
	"github.com/stretchr/testify/require"
 | 
						|
	"tailscale.com/tailcfg"
 | 
						|
	"tailscale.com/types/ptr"
 | 
						|
)
 | 
						|
 | 
						|
var veryLargeDestination = []policyv2.AliasWithPorts{
 | 
						|
	aliasWithPorts(prefixp("0.0.0.0/5"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("8.0.0.0/7"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("11.0.0.0/8"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("12.0.0.0/6"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("16.0.0.0/4"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("32.0.0.0/3"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("64.0.0.0/2"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("128.0.0.0/3"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("160.0.0.0/5"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("168.0.0.0/6"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("172.0.0.0/12"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("172.32.0.0/11"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("172.64.0.0/10"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("172.128.0.0/9"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("173.0.0.0/8"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("174.0.0.0/7"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("176.0.0.0/4"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.0.0.0/9"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.128.0.0/11"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.160.0.0/13"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.169.0.0/16"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.170.0.0/15"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.172.0.0/14"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.176.0.0/12"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("192.192.0.0/10"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("193.0.0.0/8"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("194.0.0.0/7"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("196.0.0.0/6"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("200.0.0.0/5"), tailcfg.PortRangeAny),
 | 
						|
	aliasWithPorts(prefixp("208.0.0.0/4"), tailcfg.PortRangeAny),
 | 
						|
}
 | 
						|
 | 
						|
func aclScenario(
 | 
						|
	t *testing.T,
 | 
						|
	policy *policyv2.Policy,
 | 
						|
	clientsPerUser int,
 | 
						|
) *Scenario {
 | 
						|
	t.Helper()
 | 
						|
 | 
						|
	spec := ScenarioSpec{
 | 
						|
		NodesPerUser: clientsPerUser,
 | 
						|
		Users:        []string{"user1", "user2"},
 | 
						|
	}
 | 
						|
 | 
						|
	scenario, err := NewScenario(spec)
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	err = scenario.CreateHeadscaleEnv(
 | 
						|
		[]tsic.Option{
 | 
						|
			// Alpine containers dont have ip6tables set up, which causes
 | 
						|
			// tailscaled to stop configuring the wgengine, causing it
 | 
						|
			// to not configure DNS.
 | 
						|
			tsic.WithNetfilter("off"),
 | 
						|
			tsic.WithDockerEntrypoint([]string{
 | 
						|
				"/bin/sh",
 | 
						|
				"-c",
 | 
						|
				"/bin/sleep 3 ; apk add python3 curl ; update-ca-certificates ; python3 -m http.server --bind :: 80 & tailscaled --tun=tsdev",
 | 
						|
			}),
 | 
						|
			tsic.WithDockerWorkdir("/"),
 | 
						|
		},
 | 
						|
		hsic.WithACLPolicy(policy),
 | 
						|
		hsic.WithTestName("acl"),
 | 
						|
		hsic.WithEmbeddedDERPServerOnly(),
 | 
						|
		hsic.WithTLS(),
 | 
						|
	)
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	_, err = scenario.ListTailscaleClientsFQDNs()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	return scenario
 | 
						|
}
 | 
						|
 | 
						|
// This tests a different ACL mechanism, if a host _cannot_ connect
 | 
						|
// to another node at all based on ACL, it should just not be part
 | 
						|
// of the NetMap sent to the host. This is slightly different than
 | 
						|
// the other tests as we can just check if the hosts are present
 | 
						|
// or not.
 | 
						|
func TestACLHostsInNetMapTable(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	spec := ScenarioSpec{
 | 
						|
		NodesPerUser: 2,
 | 
						|
		Users:        []string{"user1", "user2"},
 | 
						|
	}
 | 
						|
 | 
						|
	// NOTE: All want cases currently checks the
 | 
						|
	// total count of expected peers, this would
 | 
						|
	// typically be the client count of the users
 | 
						|
	// they can access minus one (them self).
 | 
						|
	tests := map[string]struct {
 | 
						|
		users  ScenarioSpec
 | 
						|
		policy policyv2.Policy
 | 
						|
		want   map[string]int
 | 
						|
	}{
 | 
						|
		// Test that when we have no ACL, each client netmap has
 | 
						|
		// the amount of peers of the total amount of clients
 | 
						|
		"base-acls": {
 | 
						|
			users: spec,
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{wildcard()},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(wildcard(), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			}, want: map[string]int{
 | 
						|
				"user1@test.no": 3, // ns1 + ns2
 | 
						|
				"user2@test.no": 3, // ns2 + ns1
 | 
						|
			},
 | 
						|
		},
 | 
						|
		// Test that when we have two users, which cannot see
 | 
						|
		// each other, each node has only the number of pairs from
 | 
						|
		// their own user.
 | 
						|
		"two-isolated-users": {
 | 
						|
			users: spec,
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user1@"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user2@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user2@"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			}, want: map[string]int{
 | 
						|
				"user1@test.no": 1,
 | 
						|
				"user2@test.no": 1,
 | 
						|
			},
 | 
						|
		},
 | 
						|
		// Test that when we have two users, with ACLs and they
 | 
						|
		// are restricted to a single port, nodes are still present
 | 
						|
		// in the netmap.
 | 
						|
		"two-restricted-present-in-netmap": {
 | 
						|
			users: spec,
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user1@"), tailcfg.PortRange{First: 22, Last: 22}),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user2@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user2@"), tailcfg.PortRange{First: 22, Last: 22}),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user2@"), tailcfg.PortRange{First: 22, Last: 22}),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user2@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user1@"), tailcfg.PortRange{First: 22, Last: 22}),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			}, want: map[string]int{
 | 
						|
				"user1@test.no": 3,
 | 
						|
				"user2@test.no": 3,
 | 
						|
			},
 | 
						|
		},
 | 
						|
		// Test that when we have two users, that are isolated,
 | 
						|
		// but one can see the others, we have the appropriate number
 | 
						|
		// of peers. This will still result in all the peers as we
 | 
						|
		// need them present on the other side for the "return path".
 | 
						|
		"two-ns-one-isolated": {
 | 
						|
			users: spec,
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user1@"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user2@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user2@"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(usernamep("user2@"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			}, want: map[string]int{
 | 
						|
				"user1@test.no": 3, // ns1 + ns2
 | 
						|
				"user2@test.no": 3, // ns1 + ns2 (return path)
 | 
						|
			},
 | 
						|
		},
 | 
						|
		"very-large-destination-prefix-1372": {
 | 
						|
			users: spec,
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
						Destinations: append(
 | 
						|
							[]policyv2.AliasWithPorts{
 | 
						|
								aliasWithPorts(usernamep("user1@"), tailcfg.PortRangeAny),
 | 
						|
							},
 | 
						|
							veryLargeDestination...,
 | 
						|
						),
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user2@")},
 | 
						|
						Destinations: append(
 | 
						|
							[]policyv2.AliasWithPorts{
 | 
						|
								aliasWithPorts(usernamep("user2@"), tailcfg.PortRangeAny),
 | 
						|
							},
 | 
						|
							veryLargeDestination...,
 | 
						|
						),
 | 
						|
					},
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
						Destinations: append(
 | 
						|
							[]policyv2.AliasWithPorts{
 | 
						|
								aliasWithPorts(usernamep("user2@"), tailcfg.PortRangeAny),
 | 
						|
							},
 | 
						|
							veryLargeDestination...,
 | 
						|
						),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			}, want: map[string]int{
 | 
						|
				"user1@test.no": 3, // ns1 + ns2
 | 
						|
				"user2@test.no": 3, // ns1 + ns2 (return path)
 | 
						|
			},
 | 
						|
		},
 | 
						|
		"ipv6-acls-1470": {
 | 
						|
			users: spec,
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{wildcard()},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(prefixp("0.0.0.0/0"), tailcfg.PortRangeAny),
 | 
						|
							aliasWithPorts(prefixp("::/0"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			}, want: map[string]int{
 | 
						|
				"user1@test.no": 3, // ns1 + ns2
 | 
						|
				"user2@test.no": 3, // ns2 + ns1
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	for name, testCase := range tests {
 | 
						|
		t.Run(name, func(t *testing.T) {
 | 
						|
			caseSpec := testCase.users
 | 
						|
			scenario, err := NewScenario(caseSpec)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			err = scenario.CreateHeadscaleEnv(
 | 
						|
				[]tsic.Option{},
 | 
						|
				hsic.WithACLPolicy(&testCase.policy),
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
			defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
			allClients, err := scenario.ListTailscaleClients()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			err = scenario.WaitForTailscaleSyncWithPeerCount(testCase.want["user1@test.no"])
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			for _, client := range allClients {
 | 
						|
				status, err := client.Status()
 | 
						|
				require.NoError(t, err)
 | 
						|
 | 
						|
				user := status.User[status.Self.UserID].LoginName
 | 
						|
 | 
						|
				assert.Len(t, status.Peer, (testCase.want[user]))
 | 
						|
			}
 | 
						|
		})
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Test to confirm that we can use user:80 from one user
 | 
						|
// This should make the node appear in the peer list, but
 | 
						|
// disallow ping.
 | 
						|
// This ACL will not allow user1 access its own machines.
 | 
						|
// Reported: https://github.com/juanfont/headscale/issues/699
 | 
						|
func TestACLAllowUser80Dst(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	scenario := aclScenario(t,
 | 
						|
		&policyv2.Policy{
 | 
						|
			ACLs: []policyv2.ACL{
 | 
						|
				{
 | 
						|
					Action:  "accept",
 | 
						|
					Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
					Destinations: []policyv2.AliasWithPorts{
 | 
						|
						aliasWithPorts(usernamep("user2@"), tailcfg.PortRange{First: 80, Last: 80}),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		1,
 | 
						|
	)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	user1Clients, err := scenario.ListTailscaleClients("user1")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	user2Clients, err := scenario.ListTailscaleClients("user2")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	// Test that user1 can visit all user2
 | 
						|
	for _, client := range user1Clients {
 | 
						|
		for _, peer := range user2Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Test that user2 _cannot_ visit user1
 | 
						|
	for _, client := range user2Clients {
 | 
						|
		for _, peer := range user1Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestACLDenyAllPort80(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	scenario := aclScenario(t,
 | 
						|
		&policyv2.Policy{
 | 
						|
			Groups: policyv2.Groups{
 | 
						|
				policyv2.Group("group:integration-acl-test"): []policyv2.Username{policyv2.Username("user1@"), policyv2.Username("user2@")},
 | 
						|
			},
 | 
						|
			ACLs: []policyv2.ACL{
 | 
						|
				{
 | 
						|
					Action:  "accept",
 | 
						|
					Sources: []policyv2.Alias{groupp("group:integration-acl-test")},
 | 
						|
					Destinations: []policyv2.AliasWithPorts{
 | 
						|
						aliasWithPorts(wildcard(), tailcfg.PortRange{First: 22, Last: 22}),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		4,
 | 
						|
	)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	allClients, err := scenario.ListTailscaleClients()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	allHostnames, err := scenario.ListTailscaleClientsFQDNs()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	for _, client := range allClients {
 | 
						|
		for _, hostname := range allHostnames {
 | 
						|
			// We will always be allowed to check _self_ so shortcircuit
 | 
						|
			// the test here.
 | 
						|
			if strings.Contains(hostname, client.Hostname()) {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", hostname)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Test to confirm that we can use user:* from one user.
 | 
						|
// This ACL will not allow user1 access its own machines.
 | 
						|
// Reported: https://github.com/juanfont/headscale/issues/699
 | 
						|
func TestACLAllowUserDst(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	scenario := aclScenario(t,
 | 
						|
		&policyv2.Policy{
 | 
						|
			ACLs: []policyv2.ACL{
 | 
						|
				{
 | 
						|
					Action:  "accept",
 | 
						|
					Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
					Destinations: []policyv2.AliasWithPorts{
 | 
						|
						aliasWithPorts(usernamep("user2@"), tailcfg.PortRangeAny),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		2,
 | 
						|
	)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	user1Clients, err := scenario.ListTailscaleClients("user1")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	user2Clients, err := scenario.ListTailscaleClients("user2")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	// Test that user1 can visit all user2
 | 
						|
	for _, client := range user1Clients {
 | 
						|
		for _, peer := range user2Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Test that user2 _cannot_ visit user1
 | 
						|
	for _, client := range user2Clients {
 | 
						|
		for _, peer := range user1Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Test to confirm that we can use *:* from one user
 | 
						|
// Reported: https://github.com/juanfont/headscale/issues/699
 | 
						|
func TestACLAllowStarDst(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	scenario := aclScenario(t,
 | 
						|
		&policyv2.Policy{
 | 
						|
			ACLs: []policyv2.ACL{
 | 
						|
				{
 | 
						|
					Action:  "accept",
 | 
						|
					Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
					Destinations: []policyv2.AliasWithPorts{
 | 
						|
						aliasWithPorts(wildcard(), tailcfg.PortRangeAny),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		2,
 | 
						|
	)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	user1Clients, err := scenario.ListTailscaleClients("user1")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	user2Clients, err := scenario.ListTailscaleClients("user2")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	// Test that user1 can visit all user2
 | 
						|
	for _, client := range user1Clients {
 | 
						|
		for _, peer := range user2Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Test that user2 _cannot_ visit user1
 | 
						|
	for _, client := range user2Clients {
 | 
						|
		for _, peer := range user1Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// TestACLNamedHostsCanReachBySubnet is the same as
 | 
						|
// TestACLNamedHostsCanReach, but it tests if we expand a
 | 
						|
// full CIDR correctly. All routes should work.
 | 
						|
func TestACLNamedHostsCanReachBySubnet(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	scenario := aclScenario(t,
 | 
						|
		&policyv2.Policy{
 | 
						|
			Hosts: policyv2.Hosts{
 | 
						|
				"all": policyv2.Prefix(netip.MustParsePrefix("100.64.0.0/24")),
 | 
						|
			},
 | 
						|
			ACLs: []policyv2.ACL{
 | 
						|
				// Everyone can curl test3
 | 
						|
				{
 | 
						|
					Action:  "accept",
 | 
						|
					Sources: []policyv2.Alias{wildcard()},
 | 
						|
					Destinations: []policyv2.AliasWithPorts{
 | 
						|
						aliasWithPorts(hostp("all"), tailcfg.PortRangeAny),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		3,
 | 
						|
	)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	user1Clients, err := scenario.ListTailscaleClients("user1")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	user2Clients, err := scenario.ListTailscaleClients("user2")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	// Test that user1 can visit all user2
 | 
						|
	for _, client := range user1Clients {
 | 
						|
		for _, peer := range user2Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Test that user2 can visit all user1
 | 
						|
	for _, client := range user2Clients {
 | 
						|
		for _, peer := range user1Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// This test aims to cover cases where individual hosts are allowed and denied
 | 
						|
// access based on their assigned hostname
 | 
						|
// https://github.com/juanfont/headscale/issues/941
 | 
						|
//
 | 
						|
//	ACL = [{
 | 
						|
//			"DstPorts": [{
 | 
						|
//				"Bits": null,
 | 
						|
//				"IP": "100.64.0.3/32",
 | 
						|
//				"Ports": {
 | 
						|
//					"First": 0,
 | 
						|
//					"Last": 65535
 | 
						|
//				}
 | 
						|
//			}],
 | 
						|
//			"SrcIPs": ["*"]
 | 
						|
//		}, {
 | 
						|
//
 | 
						|
//			"DstPorts": [{
 | 
						|
//				"Bits": null,
 | 
						|
//				"IP": "100.64.0.2/32",
 | 
						|
//				"Ports": {
 | 
						|
//					"First": 0,
 | 
						|
//					"Last": 65535
 | 
						|
//				}
 | 
						|
//			}],
 | 
						|
//			"SrcIPs": ["100.64.0.1/32"]
 | 
						|
//		}]
 | 
						|
//
 | 
						|
//	ACL Cache Map= {
 | 
						|
//		"*": {
 | 
						|
//			"100.64.0.3/32": {}
 | 
						|
//		},
 | 
						|
//		"100.64.0.1/32": {
 | 
						|
//			"100.64.0.2/32": {}
 | 
						|
//		}
 | 
						|
//	}
 | 
						|
//
 | 
						|
// https://github.com/juanfont/headscale/issues/941
 | 
						|
// Additionally verify ipv6 behaviour, part of
 | 
						|
// https://github.com/juanfont/headscale/issues/809
 | 
						|
func TestACLNamedHostsCanReach(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	tests := map[string]struct {
 | 
						|
		policy policyv2.Policy
 | 
						|
	}{
 | 
						|
		"ipv4": {
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				Hosts: policyv2.Hosts{
 | 
						|
					"test1": policyv2.Prefix(netip.MustParsePrefix("100.64.0.1/32")),
 | 
						|
					"test2": policyv2.Prefix(netip.MustParsePrefix("100.64.0.2/32")),
 | 
						|
					"test3": policyv2.Prefix(netip.MustParsePrefix("100.64.0.3/32")),
 | 
						|
				},
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					// Everyone can curl test3
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{wildcard()},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(hostp("test3"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					// test1 can curl test2
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{hostp("test1")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(hostp("test2"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		"ipv6": {
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				Hosts: policyv2.Hosts{
 | 
						|
					"test1": policyv2.Prefix(netip.MustParsePrefix("fd7a:115c:a1e0::1/128")),
 | 
						|
					"test2": policyv2.Prefix(netip.MustParsePrefix("fd7a:115c:a1e0::2/128")),
 | 
						|
					"test3": policyv2.Prefix(netip.MustParsePrefix("fd7a:115c:a1e0::3/128")),
 | 
						|
				},
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					// Everyone can curl test3
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{wildcard()},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(hostp("test3"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
					// test1 can curl test2
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{hostp("test1")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(hostp("test2"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
 | 
						|
	for name, testCase := range tests {
 | 
						|
		t.Run(name, func(t *testing.T) {
 | 
						|
			scenario := aclScenario(t,
 | 
						|
				&testCase.policy,
 | 
						|
				2,
 | 
						|
			)
 | 
						|
			defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
			// Since user/users dont matter here, we basically expect that some clients
 | 
						|
			// will be assigned these ips and that we can pick them up for our own use.
 | 
						|
			test1ip4 := netip.MustParseAddr("100.64.0.1")
 | 
						|
			test1ip6 := netip.MustParseAddr("fd7a:115c:a1e0::1")
 | 
						|
			test1, err := scenario.FindTailscaleClientByIP(test1ip6)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			test1fqdn, err := test1.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
			test1ip4URL := fmt.Sprintf("http://%s/etc/hostname", test1ip4.String())
 | 
						|
			test1ip6URL := fmt.Sprintf("http://[%s]/etc/hostname", test1ip6.String())
 | 
						|
			test1fqdnURL := fmt.Sprintf("http://%s/etc/hostname", test1fqdn)
 | 
						|
 | 
						|
			test2ip4 := netip.MustParseAddr("100.64.0.2")
 | 
						|
			test2ip6 := netip.MustParseAddr("fd7a:115c:a1e0::2")
 | 
						|
			test2, err := scenario.FindTailscaleClientByIP(test2ip6)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			test2fqdn, err := test2.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
			test2ip4URL := fmt.Sprintf("http://%s/etc/hostname", test2ip4.String())
 | 
						|
			test2ip6URL := fmt.Sprintf("http://[%s]/etc/hostname", test2ip6.String())
 | 
						|
			test2fqdnURL := fmt.Sprintf("http://%s/etc/hostname", test2fqdn)
 | 
						|
 | 
						|
			test3ip4 := netip.MustParseAddr("100.64.0.3")
 | 
						|
			test3ip6 := netip.MustParseAddr("fd7a:115c:a1e0::3")
 | 
						|
			test3, err := scenario.FindTailscaleClientByIP(test3ip6)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			test3fqdn, err := test3.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
			test3ip4URL := fmt.Sprintf("http://%s/etc/hostname", test3ip4.String())
 | 
						|
			test3ip6URL := fmt.Sprintf("http://[%s]/etc/hostname", test3ip6.String())
 | 
						|
			test3fqdnURL := fmt.Sprintf("http://%s/etc/hostname", test3fqdn)
 | 
						|
 | 
						|
			// test1 can query test3
 | 
						|
			result, err := test1.Curl(test3ip4URL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test3 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test3ip4URL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test1.Curl(test3ip6URL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test3 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test3ip6URL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test1.Curl(test3fqdnURL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test3 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test3fqdnURL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			// test2 can query test3
 | 
						|
			result, err = test2.Curl(test3ip4URL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test3 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test3ip4URL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test2.Curl(test3ip6URL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test3 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test3ip6URL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test2.Curl(test3fqdnURL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test3 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test3fqdnURL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			// test3 cannot query test1
 | 
						|
			result, err = test3.Curl(test1ip4URL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test3.Curl(test1ip6URL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test3.Curl(test1fqdnURL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			// test3 cannot query test2
 | 
						|
			result, err = test3.Curl(test2ip4URL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test3.Curl(test2ip6URL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test3.Curl(test2fqdnURL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			// test1 can query test2
 | 
						|
			result, err = test1.Curl(test2ip4URL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test2 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test2ip4URL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
 | 
						|
			require.NoError(t, err)
 | 
						|
			result, err = test1.Curl(test2ip6URL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test2 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test2ip6URL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test1.Curl(test2fqdnURL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test2 with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test2fqdnURL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			// test2 cannot query test1
 | 
						|
			result, err = test2.Curl(test1ip4URL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test2.Curl(test1ip6URL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test2.Curl(test1fqdnURL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
		})
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// TestACLDevice1CanAccessDevice2 is a table driven test that aims to test
 | 
						|
// the various ways to achieve a connection between device1 and device2 where
 | 
						|
// device1 can access device2, but not the other way around. This can be
 | 
						|
// viewed as one of the most important tests here as it covers most of the
 | 
						|
// syntax that can be used.
 | 
						|
//
 | 
						|
// Before adding new taste cases, consider if it can be reduced to a case
 | 
						|
// in this function.
 | 
						|
func TestACLDevice1CanAccessDevice2(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	tests := map[string]struct {
 | 
						|
		policy policyv2.Policy
 | 
						|
	}{
 | 
						|
		"ipv4": {
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{prefixp("100.64.0.1/32")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(prefixp("100.64.0.2/32"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		"ipv6": {
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{prefixp("fd7a:115c:a1e0::1/128")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(prefixp("fd7a:115c:a1e0::2/128"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		"hostv4cidr": {
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				Hosts: policyv2.Hosts{
 | 
						|
					"test1": policyv2.Prefix(netip.MustParsePrefix("100.64.0.1/32")),
 | 
						|
					"test2": policyv2.Prefix(netip.MustParsePrefix("100.64.0.2/32")),
 | 
						|
				},
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{hostp("test1")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(hostp("test2"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		"hostv6cidr": {
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				Hosts: policyv2.Hosts{
 | 
						|
					"test1": policyv2.Prefix(netip.MustParsePrefix("fd7a:115c:a1e0::1/128")),
 | 
						|
					"test2": policyv2.Prefix(netip.MustParsePrefix("fd7a:115c:a1e0::2/128")),
 | 
						|
				},
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{hostp("test1")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(hostp("test2"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		"group": {
 | 
						|
			policy: policyv2.Policy{
 | 
						|
				Groups: policyv2.Groups{
 | 
						|
					policyv2.Group("group:one"): []policyv2.Username{policyv2.Username("user1@")},
 | 
						|
					policyv2.Group("group:two"): []policyv2.Username{policyv2.Username("user2@")},
 | 
						|
				},
 | 
						|
				ACLs: []policyv2.ACL{
 | 
						|
					{
 | 
						|
						Action:  "accept",
 | 
						|
						Sources: []policyv2.Alias{groupp("group:one")},
 | 
						|
						Destinations: []policyv2.AliasWithPorts{
 | 
						|
							aliasWithPorts(groupp("group:two"), tailcfg.PortRangeAny),
 | 
						|
						},
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		// TODO(kradalby): Add similar tests for Tags, might need support
 | 
						|
		// in the scenario function when we create or join the clients.
 | 
						|
	}
 | 
						|
 | 
						|
	for name, testCase := range tests {
 | 
						|
		t.Run(name, func(t *testing.T) {
 | 
						|
			scenario := aclScenario(t, &testCase.policy, 1)
 | 
						|
			defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
			test1ip := netip.MustParseAddr("100.64.0.1")
 | 
						|
			test1ip6 := netip.MustParseAddr("fd7a:115c:a1e0::1")
 | 
						|
			test1, err := scenario.FindTailscaleClientByIP(test1ip)
 | 
						|
			assert.NotNil(t, test1)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			test1fqdn, err := test1.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
			test1ipURL := fmt.Sprintf("http://%s/etc/hostname", test1ip.String())
 | 
						|
			test1ip6URL := fmt.Sprintf("http://[%s]/etc/hostname", test1ip6.String())
 | 
						|
			test1fqdnURL := fmt.Sprintf("http://%s/etc/hostname", test1fqdn)
 | 
						|
 | 
						|
			test2ip := netip.MustParseAddr("100.64.0.2")
 | 
						|
			test2ip6 := netip.MustParseAddr("fd7a:115c:a1e0::2")
 | 
						|
			test2, err := scenario.FindTailscaleClientByIP(test2ip)
 | 
						|
			assert.NotNil(t, test2)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			test2fqdn, err := test2.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
			test2ipURL := fmt.Sprintf("http://%s/etc/hostname", test2ip.String())
 | 
						|
			test2ip6URL := fmt.Sprintf("http://[%s]/etc/hostname", test2ip6.String())
 | 
						|
			test2fqdnURL := fmt.Sprintf("http://%s/etc/hostname", test2fqdn)
 | 
						|
 | 
						|
			// test1 can query test2
 | 
						|
			result, err := test1.Curl(test2ipURL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test2ipURL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test1.Curl(test2ip6URL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test2ip6URL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test1.Curl(test2fqdnURL)
 | 
						|
			assert.Lenf(
 | 
						|
				t,
 | 
						|
				result,
 | 
						|
				13,
 | 
						|
				"failed to connect from test1 to test with URL %s, expected hostname of 13 chars, got %s",
 | 
						|
				test2fqdnURL,
 | 
						|
				result,
 | 
						|
			)
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			result, err = test2.Curl(test1ipURL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test2.Curl(test1ip6URL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
 | 
						|
			result, err = test2.Curl(test1fqdnURL)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
		})
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestPolicyUpdateWhileRunningWithCLIInDatabase(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	spec := ScenarioSpec{
 | 
						|
		NodesPerUser: 1,
 | 
						|
		Users:        []string{"user1", "user2"},
 | 
						|
	}
 | 
						|
 | 
						|
	scenario, err := NewScenario(spec)
 | 
						|
	require.NoError(t, err)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	err = scenario.CreateHeadscaleEnv(
 | 
						|
		[]tsic.Option{
 | 
						|
			// Alpine containers dont have ip6tables set up, which causes
 | 
						|
			// tailscaled to stop configuring the wgengine, causing it
 | 
						|
			// to not configure DNS.
 | 
						|
			tsic.WithNetfilter("off"),
 | 
						|
			tsic.WithDockerEntrypoint([]string{
 | 
						|
				"/bin/sh",
 | 
						|
				"-c",
 | 
						|
				"/bin/sleep 3 ; apk add python3 curl ; update-ca-certificates ; python3 -m http.server --bind :: 80 & tailscaled --tun=tsdev",
 | 
						|
			}),
 | 
						|
			tsic.WithDockerWorkdir("/"),
 | 
						|
		},
 | 
						|
		hsic.WithTestName("policyreload"),
 | 
						|
		hsic.WithPolicyMode(types.PolicyModeDB),
 | 
						|
	)
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	_, err = scenario.ListTailscaleClientsFQDNs()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	err = scenario.WaitForTailscaleSync()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	user1Clients, err := scenario.ListTailscaleClients("user1")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	user2Clients, err := scenario.ListTailscaleClients("user2")
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	all := append(user1Clients, user2Clients...)
 | 
						|
 | 
						|
	// Initially all nodes can reach each other
 | 
						|
	for _, client := range all {
 | 
						|
		for _, peer := range all {
 | 
						|
			if client.ContainerID() == peer.ContainerID() {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	headscale, err := scenario.Headscale()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	p := policyv2.Policy{
 | 
						|
		ACLs: []policyv2.ACL{
 | 
						|
			{
 | 
						|
				Action:  "accept",
 | 
						|
				Sources: []policyv2.Alias{usernamep("user1@")},
 | 
						|
				Destinations: []policyv2.AliasWithPorts{
 | 
						|
					aliasWithPorts(usernamep("user2@"), tailcfg.PortRangeAny),
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		Hosts: policyv2.Hosts{},
 | 
						|
	}
 | 
						|
 | 
						|
	err = headscale.SetPolicy(&p)
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	// Get the current policy and check
 | 
						|
	// if it is the same as the one we set.
 | 
						|
	var output *policyv2.Policy
 | 
						|
	err = executeAndUnmarshal(
 | 
						|
		headscale,
 | 
						|
		[]string{
 | 
						|
			"headscale",
 | 
						|
			"policy",
 | 
						|
			"get",
 | 
						|
			"--output",
 | 
						|
			"json",
 | 
						|
		},
 | 
						|
		&output,
 | 
						|
	)
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	assert.Len(t, output.ACLs, 1)
 | 
						|
 | 
						|
	if diff := cmp.Diff(p, *output, cmpopts.IgnoreUnexported(policyv2.Policy{}), cmpopts.EquateEmpty()); diff != "" {
 | 
						|
		t.Errorf("unexpected policy(-want +got):\n%s", diff)
 | 
						|
	}
 | 
						|
 | 
						|
	// Test that user1 can visit all user2
 | 
						|
	for _, client := range user1Clients {
 | 
						|
		for _, peer := range user2Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// Test that user2 _cannot_ visit user1
 | 
						|
	for _, client := range user2Clients {
 | 
						|
		for _, peer := range user1Clients {
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Empty(t, result)
 | 
						|
			require.Error(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestACLAutogroupMember(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	scenario := aclScenario(t,
 | 
						|
		&policyv2.Policy{
 | 
						|
			ACLs: []policyv2.ACL{
 | 
						|
				{
 | 
						|
					Action:  "accept",
 | 
						|
					Sources: []policyv2.Alias{ptr.To(policyv2.AutoGroupMember)},
 | 
						|
					Destinations: []policyv2.AliasWithPorts{
 | 
						|
						aliasWithPorts(ptr.To(policyv2.AutoGroupMember), tailcfg.PortRangeAny),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
		2,
 | 
						|
	)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	allClients, err := scenario.ListTailscaleClients()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	err = scenario.WaitForTailscaleSync()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	// Test that untagged nodes can access each other
 | 
						|
	for _, client := range allClients {
 | 
						|
		status, err := client.Status()
 | 
						|
		require.NoError(t, err)
 | 
						|
		if status.Self.Tags != nil && status.Self.Tags.Len() > 0 {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		for _, peer := range allClients {
 | 
						|
			if client.Hostname() == peer.Hostname() {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
 | 
						|
			status, err := peer.Status()
 | 
						|
			require.NoError(t, err)
 | 
						|
			if status.Self.Tags != nil && status.Self.Tags.Len() > 0 {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func TestACLAutogroupTagged(t *testing.T) {
 | 
						|
	IntegrationSkip(t)
 | 
						|
 | 
						|
	scenario := aclScenario(t,
 | 
						|
		&policyv2.Policy{
 | 
						|
			ACLs: []policyv2.ACL{
 | 
						|
				{
 | 
						|
					Action:  "accept",
 | 
						|
					Sources: []policyv2.Alias{ptr.To(policyv2.AutoGroupTagged)},
 | 
						|
					Destinations: []policyv2.AliasWithPorts{
 | 
						|
						aliasWithPorts(ptr.To(policyv2.AutoGroupTagged), tailcfg.PortRangeAny),
 | 
						|
					},
 | 
						|
				},
 | 
						|
			},
 | 
						|
		},
 | 
						|
 | 
						|
		2,
 | 
						|
	)
 | 
						|
	defer scenario.ShutdownAssertNoPanics(t)
 | 
						|
 | 
						|
	allClients, err := scenario.ListTailscaleClients()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	err = scenario.WaitForTailscaleSync()
 | 
						|
	require.NoError(t, err)
 | 
						|
 | 
						|
	// Test that tagged nodes can access each other
 | 
						|
	for _, client := range allClients {
 | 
						|
		status, err := client.Status()
 | 
						|
		require.NoError(t, err)
 | 
						|
		if status.Self.Tags == nil || status.Self.Tags.Len() == 0 {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
 | 
						|
		for _, peer := range allClients {
 | 
						|
			if client.Hostname() == peer.Hostname() {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
 | 
						|
			status, err := peer.Status()
 | 
						|
			require.NoError(t, err)
 | 
						|
			if status.Self.Tags == nil || status.Self.Tags.Len() == 0 {
 | 
						|
				continue
 | 
						|
			}
 | 
						|
 | 
						|
			fqdn, err := peer.FQDN()
 | 
						|
			require.NoError(t, err)
 | 
						|
 | 
						|
			url := fmt.Sprintf("http://%s/etc/hostname", fqdn)
 | 
						|
			t.Logf("url from %s to %s", client.Hostname(), url)
 | 
						|
 | 
						|
			result, err := client.Curl(url)
 | 
						|
			assert.Len(t, result, 13)
 | 
						|
			require.NoError(t, err)
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |