-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
consul: correctly check consul acl token namespace when using consul oss
This PR fixes the Nomad Object Namespace <-> Consul ACL Token relationship check when using Consul OSS (or Consul ENT without namespace support). Nomad v1.1.0 introduced a regression where Nomad would fail the validation when submitting Connect jobs and allow_unauthenticated set to true, with Consul OSS - because it would do the namespace check against the Consul ACL token assuming the "default" namespace, which does not work because Consul OSS does not have namespaces. Instead of making the bad assumption, expand the namespace check to handle each special case explicitly. Fixes #10718
- Loading branch information
Showing
9 changed files
with
681 additions
and
353 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
//+build !ent | ||
|
||
package nomad | ||
|
||
import ( | ||
"context" | ||
"errors" | ||
"testing" | ||
|
||
"github.com/hashicorp/nomad/command/agent/consul" | ||
"github.com/hashicorp/nomad/helper/testlog" | ||
"github.com/hashicorp/nomad/nomad/structs" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestConsulACLsAPI_CheckPermissions_oss(t *testing.T) { | ||
|
||
// In Nomad OSS, CheckPermissions will only receive "" as input for the | ||
// namespace parameter - as the ConsulUsage map from namespace to usages will | ||
// always contain one key - the empty string. | ||
|
||
t.Parallel() | ||
|
||
try := func(t *testing.T, namespace string, usage *structs.ConsulUsage, secretID string, exp error) { | ||
logger := testlog.HCLogger(t) | ||
aclAPI := consul.NewMockACLsAPI(logger) | ||
cAPI := NewConsulACLsAPI(aclAPI, logger, nil) | ||
|
||
err := cAPI.CheckPermissions(context.Background(), namespace, usage, secretID) | ||
if exp == nil { | ||
require.NoError(t, err) | ||
} else { | ||
require.Equal(t, exp.Error(), err.Error()) | ||
} | ||
} | ||
|
||
t.Run("check-permissions kv read", func(t *testing.T) { | ||
t.Run("uses kv has permission", func(t *testing.T) { | ||
u := &structs.ConsulUsage{KV: true} | ||
try(t, "", u, consul.ExampleOperatorTokenID5, nil) | ||
}) | ||
|
||
t.Run("uses kv without permission", func(t *testing.T) { | ||
u := &structs.ConsulUsage{KV: true} | ||
try(t, "", u, consul.ExampleOperatorTokenID1, errors.New("insufficient Consul ACL permissions to use template")) | ||
}) | ||
|
||
t.Run("uses kv no token", func(t *testing.T) { | ||
u := &structs.ConsulUsage{KV: true} | ||
try(t, "", u, "", errors.New("missing consul token")) | ||
}) | ||
|
||
t.Run("uses kv nonsense token", func(t *testing.T) { | ||
u := &structs.ConsulUsage{KV: true} | ||
try(t, "", u, "47d33e22-720a-7fe6-7d7f-418bf844a0be", errors.New("unable to read consul token: no such token")) | ||
}) | ||
|
||
t.Run("no kv no token", func(t *testing.T) { | ||
u := &structs.ConsulUsage{KV: false} | ||
try(t, "", u, "", nil) | ||
}) | ||
}) | ||
|
||
t.Run("check-permissions service write", func(t *testing.T) { | ||
usage := &structs.ConsulUsage{Services: []string{"service1"}} | ||
|
||
t.Run("operator has service write", func(t *testing.T) { | ||
try(t, "", usage, consul.ExampleOperatorTokenID1, nil) | ||
}) | ||
|
||
t.Run("operator has service_prefix write", func(t *testing.T) { | ||
u := &structs.ConsulUsage{Services: []string{"foo-service1"}} | ||
try(t, "", u, consul.ExampleOperatorTokenID2, nil) | ||
}) | ||
|
||
t.Run("operator has service_prefix write wrong prefix", func(t *testing.T) { | ||
u := &structs.ConsulUsage{Services: []string{"bar-service1"}} | ||
try(t, "", u, consul.ExampleOperatorTokenID2, errors.New(`insufficient Consul ACL permissions to write service "bar-service1"`)) | ||
}) | ||
|
||
t.Run("operator permissions insufficient", func(t *testing.T) { | ||
try(t, "", usage, consul.ExampleOperatorTokenID3, errors.New(`insufficient Consul ACL permissions to write service "service1"`)) | ||
}) | ||
|
||
t.Run("operator provided no token", func(t *testing.T) { | ||
try(t, "", usage, "", errors.New("missing consul token")) | ||
}) | ||
|
||
t.Run("operator provided nonsense token", func(t *testing.T) { | ||
try(t, "", usage, "f1682bde-1e71-90b1-9204-85d35467ba61", errors.New("unable to read consul token: no such token")) | ||
}) | ||
}) | ||
|
||
t.Run("check-permissions connect service identity write", func(t *testing.T) { | ||
usage := &structs.ConsulUsage{Kinds: []structs.TaskKind{structs.NewTaskKind(structs.ConnectProxyPrefix, "service1")}} | ||
|
||
t.Run("operator has service write", func(t *testing.T) { | ||
try(t, "", usage, consul.ExampleOperatorTokenID1, nil) | ||
}) | ||
|
||
t.Run("operator has service_prefix write", func(t *testing.T) { | ||
u := &structs.ConsulUsage{Kinds: []structs.TaskKind{structs.NewTaskKind(structs.ConnectProxyPrefix, "foo-service1")}} | ||
try(t, "", u, consul.ExampleOperatorTokenID2, nil) | ||
}) | ||
|
||
t.Run("operator has service_prefix write wrong prefix", func(t *testing.T) { | ||
u := &structs.ConsulUsage{Kinds: []structs.TaskKind{structs.NewTaskKind(structs.ConnectProxyPrefix, "bar-service1")}} | ||
try(t, "", u, consul.ExampleOperatorTokenID2, errors.New(`insufficient Consul ACL permissions to write Connect service "bar-service1"`)) | ||
}) | ||
|
||
t.Run("operator permissions insufficient", func(t *testing.T) { | ||
try(t, "", usage, consul.ExampleOperatorTokenID3, errors.New(`insufficient Consul ACL permissions to write Connect service "service1"`)) | ||
}) | ||
|
||
t.Run("operator provided no token", func(t *testing.T) { | ||
try(t, "", usage, "", errors.New("missing consul token")) | ||
}) | ||
|
||
t.Run("operator provided nonsense token", func(t *testing.T) { | ||
try(t, "", usage, "f1682bde-1e71-90b1-9204-85d35467ba61", errors.New("unable to read consul token: no such token")) | ||
}) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.