Files
nomad/client/allocrunner/taskrunner/identity_hook_test.go
Tim Gross d56e8ad1aa WI: ensure Consul hook and WID manager interpolate services (#20344)
Services can have some of their string fields interpolated. The new Workload
Identity flow doesn't interpolate the services before requesting signed
identities or using those identities to get Consul tokens.

Add support for interpolation to the WID manager and the Consul tokens hook by
providing both with a taskenv builder. Add an "interpolate workload" field to
the WI handle to allow passing the original workload name to the server so the
server can find the correct service to sign.

This changeset also makes two related test improvements:
* Remove the mock WID manager, which was only used in the Consul hook tests and
  isn't necessary so long as we provide the real WID manager with the mock
  signer and never call `Run` on it. It wasn't feasible to exercise the correct
  behavior without this refactor, as the mocks were bypassing the new code.
* Fixed swapped expect-vs-actual assertions on the `consul_hook` tests.

Fixes: https://github.com/hashicorp/nomad/issues/20025
2024-04-11 15:40:28 -04:00

278 lines
8.6 KiB
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package taskrunner
import (
"context"
"path/filepath"
"testing"
"time"
"github.com/hashicorp/nomad/ci"
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
trtesting "github.com/hashicorp/nomad/client/allocrunner/taskrunner/testing"
cstate "github.com/hashicorp/nomad/client/state"
"github.com/hashicorp/nomad/client/taskenv"
"github.com/hashicorp/nomad/client/widmgr"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/testutil"
"github.com/shoenig/test/must"
)
var _ interfaces.TaskPrestartHook = (*identityHook)(nil)
var _ interfaces.TaskStopHook = (*identityHook)(nil)
var _ interfaces.ShutdownHook = (*identityHook)(nil)
// See task_runner_test.go:TestTaskRunner_IdentityHook
// MockTokenSetter is a mock implementation of tokenSetter which is satisfied
// by TaskRunner at runtime.
type MockTokenSetter struct {
defaultToken string
}
func (m *MockTokenSetter) setNomadToken(token string) {
m.defaultToken = token
}
// TestIdentityHook_RenewAll asserts token renewal happens when expected.
func TestIdentityHook_RenewAll(t *testing.T) {
ci.Parallel(t)
// TTL is used for expiration and the test will sleep this long before
// checking that tokens were rotated. Therefore the time must be long enough
// to generate new tokens. Since no Raft or IO (outside of potentially
// writing 1 token file) is performed, this should be relatively fast.
ttl := 3 * time.Second
node := mock.Node()
alloc := mock.Alloc()
alloc.NodeID = node.ID
task := alloc.LookupTask("web")
task.Identities = []*structs.WorkloadIdentity{
{
Name: "consul",
Audience: []string{"consul"},
Env: true,
TTL: ttl,
ChangeMode: "restart",
},
{
Name: "vault",
Audience: []string{"vault"},
File: true,
TTL: ttl,
ChangeMode: "signal",
ChangeSignal: "SIGHUP",
},
}
secretsDir := t.TempDir()
mockTR := &MockTokenSetter{}
stopCtx, stop := context.WithCancel(context.Background())
t.Cleanup(stop)
// setup mock signer and WIDMgr
logger := testlog.HCLogger(t)
db := cstate.NewMemDB(logger)
mockSigner := widmgr.NewMockWIDSigner(task.Identities)
envBuilder := taskenv.NewBuilder(mock.Node(), alloc, nil, "global")
mockWIDMgr := widmgr.NewWIDMgr(mockSigner, alloc, db, logger, envBuilder)
mockWIDMgr.SetMinWait(time.Second) // fast renewals, because the default is 10s
mockLifecycle := trtesting.NewMockTaskHooks()
h := &identityHook{
alloc: alloc,
task: task,
tokenDir: secretsDir,
envBuilder: taskenv.NewBuilder(node, alloc, task, alloc.Job.Region),
ts: mockTR,
lifecycle: mockLifecycle,
widmgr: mockWIDMgr,
logger: testlog.HCLogger(t),
stopCtx: stopCtx,
stop: stop,
}
// do the initial renewal and start the loop
must.NoError(t, h.widmgr.Run())
start := time.Now()
must.NoError(t, h.Prestart(context.Background(), nil, nil))
env := h.envBuilder.Build().EnvMap
// Assert initial tokens were set in Prestart
must.Eq(t, alloc.SignedIdentities["web"], mockTR.defaultToken)
must.FileNotExists(t, filepath.Join(secretsDir, wiTokenFile))
must.FileNotExists(t, filepath.Join(secretsDir, "nomad_consul.jwt"))
must.MapContainsKey(t, env, "NOMAD_TOKEN_consul")
must.FileExists(t, filepath.Join(secretsDir, "nomad_vault.jwt"))
origConsul := env["NOMAD_TOKEN_consul"]
origVault := testutil.MustReadFile(t, secretsDir, "nomad_vault.jwt")
// Tokens should be rotated by their expiration
wait := time.Until(start.Add(ttl))
h.logger.Trace("sleeping until expiration", "wait", wait)
time.Sleep(wait)
// Stop renewal before checking to ensure stopping works
must.NoError(t, h.Stop(context.Background(), nil, nil))
// Ensure change_mode operations occurred
select {
case <-mockLifecycle.RestartCh:
h.logger.Trace("restart happened")
case <-time.After(10 * time.Second):
t.Fatalf("timed out waiting for restart")
}
select {
case <-mockLifecycle.SignalCh:
h.logger.Trace("signal happened")
case <-time.After(10 * time.Second):
t.Fatalf("timed out waiting for restart")
}
newConsul := h.envBuilder.Build().EnvMap["NOMAD_TOKEN_consul"]
must.StrContains(t, newConsul, ".") // ensure new token is JWTish
must.NotEq(t, newConsul, origConsul)
newVault := testutil.MustReadFile(t, secretsDir, "nomad_vault.jwt")
must.StrContains(t, string(newVault), ".") // ensure new token is JWTish
must.NotEq(t, newVault, origVault)
// Assert Stop work. Tokens should not have changed.
time.Sleep(wait)
must.Eq(t, newConsul, h.envBuilder.Build().EnvMap["NOMAD_TOKEN_consul"])
must.Eq(t, newVault, testutil.MustReadFile(t, secretsDir, "nomad_vault.jwt"))
}
// TestIdentityHook_RenewOne asserts token renewal only renews tokens with a TTL.
func TestIdentityHook_RenewOne(t *testing.T) {
ci.Parallel(t)
ttl := 3 * time.Second
node := mock.Node()
alloc := mock.Alloc()
alloc.NodeID = node.ID
alloc.SignedIdentities = map[string]string{"web": "does.not.matter"}
task := alloc.LookupTask("web")
task.Identities = []*structs.WorkloadIdentity{
{
Name: "consul",
Audience: []string{"consul"},
Env: true,
},
{
Name: "vault",
Audience: []string{"vault"},
File: true,
TTL: ttl,
},
}
secretsDir := t.TempDir()
mockTR := &MockTokenSetter{}
stopCtx, stop := context.WithCancel(context.Background())
t.Cleanup(stop)
// setup mock signer and WIDMgr
logger := testlog.HCLogger(t)
db := cstate.NewMemDB(logger)
mockSigner := widmgr.NewMockWIDSigner(task.Identities)
envBuilder := taskenv.NewBuilder(mock.Node(), alloc, nil, "global")
mockWIDMgr := widmgr.NewWIDMgr(mockSigner, alloc, db, logger, envBuilder)
mockWIDMgr.SetMinWait(time.Second) // fast renewals, because the default is 10s
h := &identityHook{
alloc: alloc,
task: task,
tokenDir: secretsDir,
envBuilder: taskenv.NewBuilder(node, alloc, task, alloc.Job.Region),
ts: mockTR,
widmgr: mockWIDMgr,
logger: testlog.HCLogger(t),
stopCtx: stopCtx,
stop: stop,
}
// do the initial renewal and start the loop
must.NoError(t, h.widmgr.Run())
start := time.Now()
must.NoError(t, h.Prestart(context.Background(), nil, nil))
time.Sleep(time.Second) // goroutines in the Prestart hook must run first before we Build the EnvMap
env := h.envBuilder.Build().EnvMap
// Assert initial tokens were set in Prestart
must.Eq(t, alloc.SignedIdentities["web"], mockTR.defaultToken)
must.FileNotExists(t, filepath.Join(secretsDir, wiTokenFile))
must.FileNotExists(t, filepath.Join(secretsDir, "nomad_consul.jwt"))
must.MapContainsKey(t, env, "NOMAD_TOKEN_consul")
must.FileExists(t, filepath.Join(secretsDir, "nomad_vault.jwt"))
origConsul := env["NOMAD_TOKEN_consul"]
origVault := testutil.MustReadFile(t, secretsDir, "nomad_vault.jwt")
// One token should be rotated by their expiration
wait := time.Until(start.Add(ttl))
h.logger.Trace("sleeping until expiration", "wait", wait)
time.Sleep(wait)
// Stop renewal before checking to ensure stopping works
must.NoError(t, h.Stop(context.Background(), nil, nil))
time.Sleep(time.Second) // Stop is async so give renewal time to exit
newConsul := h.envBuilder.Build().EnvMap["NOMAD_TOKEN_consul"]
must.StrContains(t, newConsul, ".") // ensure new token is JWTish
must.Eq(t, newConsul, origConsul)
newVault := testutil.MustReadFile(t, secretsDir, "nomad_vault.jwt")
must.StrContains(t, string(newVault), ".") // ensure new token is JWTish
must.NotEq(t, newVault, origVault)
// Assert Stop work. Tokens should not have changed.
time.Sleep(wait)
must.Eq(t, newConsul, h.envBuilder.Build().EnvMap["NOMAD_TOKEN_consul"])
must.Eq(t, newVault, testutil.MustReadFile(t, secretsDir, "nomad_vault.jwt"))
}
// TestIdentityHook_ErrorWriting assert Prestart returns an error if the
// default token could not be written when requested.
func TestIdentityHook_ErrorWriting(t *testing.T) {
ci.Parallel(t)
alloc := mock.Alloc()
alloc.SignedIdentities = map[string]string{"web": "does.not.need.to.be.valid"}
task := alloc.LookupTask("web")
task.Identity.File = true
node := mock.Node()
stopCtx, stop := context.WithCancel(context.Background())
t.Cleanup(stop)
h := &identityHook{
alloc: alloc,
task: task,
tokenDir: "/this-should-not-exist",
envBuilder: taskenv.NewBuilder(node, alloc, task, alloc.Job.Region),
ts: &MockTokenSetter{},
logger: testlog.HCLogger(t),
stopCtx: stopCtx,
stop: stop,
}
// Prestart should fail when trying to write the default identity file
err := h.Prestart(context.Background(), nil, nil)
must.ErrorContains(t, err, "failed to write nomad token")
}