181 lines
4.7 KiB
Go
181 lines
4.7 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package proxycfgglue
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/go-hclog"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/hashicorp/consul/acl"
|
|
"github.com/hashicorp/consul/acl/resolver"
|
|
"github.com/hashicorp/consul/agent/consul/state"
|
|
"github.com/hashicorp/consul/agent/proxycfg"
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
"github.com/hashicorp/consul/sdk/testutil"
|
|
)
|
|
|
|
func TestServerIntentions(t *testing.T) {
|
|
nextIndex := indexGenerator()
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
t.Cleanup(cancel)
|
|
|
|
store := state.NewStateStore(nil)
|
|
|
|
const (
|
|
serviceName = "web"
|
|
index = 1
|
|
)
|
|
require.NoError(t, store.SystemMetadataSet(1, &structs.SystemMetadataEntry{
|
|
Key: structs.SystemMetadataIntentionFormatKey,
|
|
Value: structs.SystemMetadataIntentionFormatConfigValue,
|
|
}))
|
|
require.NoError(t, store.EnsureConfigEntry(nextIndex(), &structs.ServiceIntentionsConfigEntry{
|
|
Name: serviceName,
|
|
Sources: []*structs.SourceIntention{
|
|
{
|
|
Name: "db",
|
|
Action: structs.IntentionActionAllow,
|
|
},
|
|
},
|
|
}))
|
|
|
|
authz := policyAuthorizer(t, `
|
|
service "web" { policy = "read" }
|
|
`)
|
|
|
|
logger := hclog.NewNullLogger()
|
|
|
|
intentions := ServerIntentions(ServerDataSourceDeps{
|
|
ACLResolver: newStaticResolver(authz),
|
|
Logger: logger,
|
|
GetStore: func() Store { return store },
|
|
})
|
|
|
|
eventCh := make(chan proxycfg.UpdateEvent)
|
|
require.NoError(t, intentions.Notify(ctx, &structs.ServiceSpecificRequest{
|
|
ServiceName: serviceName,
|
|
EnterpriseMeta: *acl.DefaultEnterpriseMeta(),
|
|
}, "", eventCh))
|
|
|
|
testutil.RunStep(t, "initial snapshot", func(t *testing.T) {
|
|
result := getEventResult[structs.SimplifiedIntentions](t, eventCh)
|
|
require.Len(t, result, 1)
|
|
|
|
intention := result[0]
|
|
require.Equal(t, intention.DestinationName, serviceName)
|
|
require.Equal(t, intention.SourceName, "db")
|
|
})
|
|
|
|
testutil.RunStep(t, "updating an intention", func(t *testing.T) {
|
|
require.NoError(t, store.EnsureConfigEntry(nextIndex(), &structs.ServiceIntentionsConfigEntry{
|
|
Name: serviceName,
|
|
Sources: []*structs.SourceIntention{
|
|
{
|
|
Name: "api",
|
|
Action: structs.IntentionActionAllow,
|
|
},
|
|
{
|
|
Name: "db",
|
|
Action: structs.IntentionActionAllow,
|
|
},
|
|
},
|
|
}))
|
|
|
|
result := getEventResult[structs.SimplifiedIntentions](t, eventCh)
|
|
require.Len(t, result, 2)
|
|
|
|
for i, src := range []string{"api", "db"} {
|
|
intention := result[i]
|
|
require.Equal(t, intention.DestinationName, serviceName)
|
|
require.Equal(t, intention.SourceName, src)
|
|
}
|
|
})
|
|
|
|
testutil.RunStep(t, "publishing a delete event", func(t *testing.T) {
|
|
require.NoError(t, store.DeleteConfigEntry(nextIndex(), structs.ServiceIntentions, serviceName, nil))
|
|
|
|
result := getEventResult[structs.SimplifiedIntentions](t, eventCh)
|
|
require.Len(t, result, 0)
|
|
})
|
|
}
|
|
|
|
func TestServerIntentions_ACLDeny(t *testing.T) {
|
|
nextIndex := indexGenerator()
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
t.Cleanup(cancel)
|
|
|
|
store := state.NewStateStore(nil)
|
|
|
|
const (
|
|
serviceName = "web"
|
|
index = 1
|
|
)
|
|
require.NoError(t, store.SystemMetadataSet(1, &structs.SystemMetadataEntry{
|
|
Key: structs.SystemMetadataIntentionFormatKey,
|
|
Value: structs.SystemMetadataIntentionFormatConfigValue,
|
|
}))
|
|
require.NoError(t, store.EnsureConfigEntry(nextIndex(), &structs.ServiceIntentionsConfigEntry{
|
|
Name: serviceName,
|
|
Sources: []*structs.SourceIntention{
|
|
{
|
|
Name: "db",
|
|
Action: structs.IntentionActionAllow,
|
|
},
|
|
},
|
|
}))
|
|
|
|
authz := policyAuthorizer(t, ``)
|
|
|
|
logger := hclog.NewNullLogger()
|
|
|
|
intentions := ServerIntentions(ServerDataSourceDeps{
|
|
ACLResolver: newStaticResolver(authz),
|
|
Logger: logger,
|
|
GetStore: func() Store { return store },
|
|
})
|
|
|
|
eventCh := make(chan proxycfg.UpdateEvent)
|
|
require.NoError(t, intentions.Notify(ctx, &structs.ServiceSpecificRequest{
|
|
ServiceName: serviceName,
|
|
EnterpriseMeta: *acl.DefaultEnterpriseMeta(),
|
|
}, "", eventCh))
|
|
|
|
testutil.RunStep(t, "initial snapshot", func(t *testing.T) {
|
|
result := getEventResult[structs.SimplifiedIntentions](t, eventCh)
|
|
require.Len(t, result, 0)
|
|
})
|
|
}
|
|
|
|
type staticResolver struct {
|
|
mu sync.Mutex
|
|
authorizer acl.Authorizer
|
|
}
|
|
|
|
func newStaticResolver(authz acl.Authorizer) *staticResolver {
|
|
resolver := new(staticResolver)
|
|
resolver.SwapAuthorizer(authz)
|
|
return resolver
|
|
}
|
|
|
|
func (r *staticResolver) SwapAuthorizer(authz acl.Authorizer) {
|
|
r.mu.Lock()
|
|
defer r.mu.Unlock()
|
|
|
|
r.authorizer = authz
|
|
}
|
|
|
|
func (r *staticResolver) ResolveTokenAndDefaultMeta(_ string, entMeta *acl.EnterpriseMeta, authzContext *acl.AuthorizerContext) (resolver.Result, error) {
|
|
entMeta.FillAuthzContext(authzContext)
|
|
|
|
r.mu.Lock()
|
|
defer r.mu.Unlock()
|
|
return resolver.Result{Authorizer: r.authorizer}, nil
|
|
}
|