forked from TrueCloudLab/certificates
873 lines
22 KiB
Go
873 lines
22 KiB
Go
package authority
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"go.step.sm/linkedca"
|
|
|
|
"github.com/smallstep/certificates/authority/admin"
|
|
"github.com/smallstep/certificates/authority/config"
|
|
"github.com/smallstep/certificates/authority/policy"
|
|
)
|
|
|
|
func TestAuthority_checkPolicy(t *testing.T) {
|
|
type test struct {
|
|
ctx context.Context
|
|
currentAdmin *linkedca.Admin
|
|
otherAdmins []*linkedca.Admin
|
|
policy *linkedca.Policy
|
|
err *PolicyError
|
|
}
|
|
tests := map[string]func(t *testing.T) test{
|
|
"fail/NewX509PolicyEngine-error": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"**.local"},
|
|
},
|
|
},
|
|
},
|
|
err: &PolicyError{
|
|
Typ: ConfigurationFailure,
|
|
Err: errors.New("cannot parse permitted domain constraint \"**.local\": domain constraint \"**.local\" can only have wildcard as starting character"),
|
|
},
|
|
}
|
|
},
|
|
"fail/currentAdmin-evaluation-error": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
currentAdmin: &linkedca.Admin{Subject: "*"},
|
|
otherAdmins: []*linkedca.Admin{},
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
},
|
|
},
|
|
err: &PolicyError{
|
|
Typ: EvaluationFailure,
|
|
Err: errors.New("cannot parse domain: dns \"*\" cannot be converted to ASCII"),
|
|
},
|
|
}
|
|
},
|
|
"fail/currentAdmin-lockout": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
currentAdmin: &linkedca.Admin{Subject: "step"},
|
|
otherAdmins: []*linkedca.Admin{
|
|
{
|
|
Subject: "otherAdmin",
|
|
},
|
|
},
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
},
|
|
},
|
|
err: &PolicyError{
|
|
Typ: AdminLockOut,
|
|
Err: errors.New("the provided policy would lock out [step] from the CA. Please update your policy to include [step] as an allowed name"),
|
|
},
|
|
}
|
|
},
|
|
"fail/otherAdmins-evaluation-error": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
currentAdmin: &linkedca.Admin{Subject: "step"},
|
|
otherAdmins: []*linkedca.Admin{
|
|
{
|
|
Subject: "other",
|
|
},
|
|
{
|
|
Subject: "**",
|
|
},
|
|
},
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"step", "other", "*.local"},
|
|
},
|
|
},
|
|
},
|
|
err: &PolicyError{
|
|
Typ: EvaluationFailure,
|
|
Err: errors.New("cannot parse domain: dns \"**\" cannot be converted to ASCII"),
|
|
},
|
|
}
|
|
},
|
|
"fail/otherAdmins-lockout": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
currentAdmin: &linkedca.Admin{Subject: "step"},
|
|
otherAdmins: []*linkedca.Admin{
|
|
{
|
|
Subject: "otherAdmin",
|
|
},
|
|
},
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"step"},
|
|
},
|
|
},
|
|
},
|
|
err: &PolicyError{
|
|
Typ: AdminLockOut,
|
|
Err: errors.New("the provided policy would lock out [otherAdmin] from the CA. Please update your policy to include [otherAdmin] as an allowed name"),
|
|
},
|
|
}
|
|
},
|
|
"ok/no-policy": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
currentAdmin: &linkedca.Admin{Subject: "step"},
|
|
otherAdmins: []*linkedca.Admin{},
|
|
policy: nil,
|
|
}
|
|
},
|
|
"ok/empty-policy": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
currentAdmin: &linkedca.Admin{Subject: "step"},
|
|
otherAdmins: []*linkedca.Admin{},
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
"ok/policy": func(t *testing.T) test {
|
|
return test{
|
|
ctx: context.Background(),
|
|
currentAdmin: &linkedca.Admin{Subject: "step"},
|
|
otherAdmins: []*linkedca.Admin{
|
|
{
|
|
Subject: "otherAdmin",
|
|
},
|
|
},
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"step", "otherAdmin"},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
}
|
|
|
|
for name, prep := range tests {
|
|
tc := prep(t)
|
|
t.Run(name, func(t *testing.T) {
|
|
a := &Authority{}
|
|
|
|
err := a.checkPolicy(tc.ctx, tc.currentAdmin, tc.otherAdmins, tc.policy)
|
|
|
|
if tc.err == nil {
|
|
assert.Nil(t, err)
|
|
} else {
|
|
assert.IsType(t, &PolicyError{}, err)
|
|
|
|
pe, ok := err.(*PolicyError)
|
|
assert.True(t, ok)
|
|
|
|
assert.Equal(t, tc.err.Typ, pe.Typ)
|
|
assert.Equal(t, tc.err.Error(), pe.Error())
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func Test_policyToCertificates(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
policy *linkedca.Policy
|
|
want *policy.Options
|
|
}{
|
|
{
|
|
name: "nil",
|
|
policy: nil,
|
|
want: nil,
|
|
},
|
|
{
|
|
name: "no-policy",
|
|
policy: &linkedca.Policy{},
|
|
want: nil,
|
|
},
|
|
{
|
|
name: "partial-policy",
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
AllowWildcardLiteral: false,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
},
|
|
want: &policy.Options{
|
|
X509: &policy.X509PolicyOptions{
|
|
AllowedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"*.local"},
|
|
},
|
|
AllowWildcardLiteral: false,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
name: "full-policy",
|
|
policy: &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"step"},
|
|
Ips: []string{"127.0.0.1/24"},
|
|
Emails: []string{"*.example.com"},
|
|
Uris: []string{"https://*.local"},
|
|
},
|
|
Deny: &linkedca.X509Names{
|
|
Dns: []string{"bad"},
|
|
Ips: []string{"127.0.0.30"},
|
|
Emails: []string{"badhost.example.com"},
|
|
Uris: []string{"https://badhost.local"},
|
|
},
|
|
AllowWildcardLiteral: true,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
Ssh: &linkedca.SSHPolicy{
|
|
Host: &linkedca.SSHHostPolicy{
|
|
Allow: &linkedca.SSHHostNames{
|
|
Dns: []string{"*.localhost"},
|
|
Ips: []string{"127.0.0.1/24"},
|
|
Principals: []string{"user"},
|
|
},
|
|
Deny: &linkedca.SSHHostNames{
|
|
Dns: []string{"badhost.localhost"},
|
|
Ips: []string{"127.0.0.40"},
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
User: &linkedca.SSHUserPolicy{
|
|
Allow: &linkedca.SSHUserNames{
|
|
Emails: []string{"@work"},
|
|
Principals: []string{"user"},
|
|
},
|
|
Deny: &linkedca.SSHUserNames{
|
|
Emails: []string{"root@work"},
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
want: &policy.Options{
|
|
X509: &policy.X509PolicyOptions{
|
|
AllowedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"step"},
|
|
IPRanges: []string{"127.0.0.1/24"},
|
|
EmailAddresses: []string{"*.example.com"},
|
|
URIDomains: []string{"https://*.local"},
|
|
},
|
|
DeniedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"bad"},
|
|
IPRanges: []string{"127.0.0.30"},
|
|
EmailAddresses: []string{"badhost.example.com"},
|
|
URIDomains: []string{"https://badhost.local"},
|
|
},
|
|
AllowWildcardLiteral: true,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
SSH: &policy.SSHPolicyOptions{
|
|
Host: &policy.SSHHostCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"*.localhost"},
|
|
IPRanges: []string{"127.0.0.1/24"},
|
|
Principals: []string{"user"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"badhost.localhost"},
|
|
IPRanges: []string{"127.0.0.40"},
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
User: &policy.SSHUserCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
EmailAddresses: []string{"@work"},
|
|
Principals: []string{"user"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
EmailAddresses: []string{"root@work"},
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
got := policyToCertificates(tt.policy)
|
|
if !cmp.Equal(tt.want, got) {
|
|
t.Errorf("policyToCertificates() diff=\n%s", cmp.Diff(tt.want, got))
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestAuthority_reloadPolicyEngines(t *testing.T) {
|
|
type exp struct {
|
|
x509Policy bool
|
|
sshUserPolicy bool
|
|
sshHostPolicy bool
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
config *config.Config
|
|
adminDB admin.DB
|
|
ctx context.Context
|
|
expected *exp
|
|
wantErr bool
|
|
}{
|
|
{
|
|
name: "fail/standalone-x509-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
X509: &policy.X509PolicyOptions{
|
|
AllowedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"**.local"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "fail/standalone-ssh-host-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
SSH: &policy.SSHPolicyOptions{
|
|
Host: &policy.SSHHostCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"**.local"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "fail/standalone-ssh-user-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
SSH: &policy.SSHPolicyOptions{
|
|
User: &policy.SSHUserCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
EmailAddresses: []string{"**example.com"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "fail/adminDB.GetAuthorityPolicy-error",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return nil, errors.New("force")
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "fail/admin-x509-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"**.local"},
|
|
},
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "fail/admin-ssh-host-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
Ssh: &linkedca.SSHPolicy{
|
|
Host: &linkedca.SSHHostPolicy{
|
|
Allow: &linkedca.SSHHostNames{
|
|
Dns: []string{"**.local"},
|
|
},
|
|
},
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "fail/admin-ssh-user-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
Ssh: &linkedca.SSHPolicy{
|
|
User: &linkedca.SSHUserPolicy{
|
|
Allow: &linkedca.SSHUserNames{
|
|
Emails: []string{"@@example.com"},
|
|
},
|
|
},
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: true,
|
|
},
|
|
{
|
|
name: "ok/linkedca-unsupported",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &linkedCaClient{},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
},
|
|
{
|
|
name: "ok/standalone-no-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: nil,
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: nil,
|
|
},
|
|
{
|
|
name: "ok/standalone-x509-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
X509: &policy.X509PolicyOptions{
|
|
AllowedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"*.local"},
|
|
},
|
|
DeniedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"badhost.local"},
|
|
},
|
|
AllowWildcardLiteral: true,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
// expect only the X.509 policy to exist
|
|
x509Policy: true,
|
|
sshHostPolicy: false,
|
|
sshUserPolicy: false,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/standalone-ssh-host-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
SSH: &policy.SSHPolicyOptions{
|
|
Host: &policy.SSHHostCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"*.local"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"badhost.local"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
// expect only the SSH host policy to exist
|
|
x509Policy: false,
|
|
sshHostPolicy: true,
|
|
sshUserPolicy: false,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/standalone-ssh-user-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
SSH: &policy.SSHPolicyOptions{
|
|
User: &policy.SSHUserCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"*"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
// expect only the SSH user policy to exist
|
|
x509Policy: false,
|
|
sshHostPolicy: false,
|
|
sshUserPolicy: true,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/standalone-ssh-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
SSH: &policy.SSHPolicyOptions{
|
|
Host: &policy.SSHHostCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"*.local"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"badhost.local"},
|
|
},
|
|
},
|
|
User: &policy.SSHUserCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"*"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
// expect only the SSH policy engines to exist
|
|
x509Policy: false,
|
|
sshHostPolicy: true,
|
|
sshUserPolicy: true,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/standalone-full-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: false,
|
|
Policy: &policy.Options{
|
|
X509: &policy.X509PolicyOptions{
|
|
AllowedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"*.local"},
|
|
},
|
|
DeniedNames: &policy.X509NameOptions{
|
|
DNSDomains: []string{"badhost.local"},
|
|
},
|
|
AllowWildcardLiteral: true,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
SSH: &policy.SSHPolicyOptions{
|
|
Host: &policy.SSHHostCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"*.local"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"badhost.local"},
|
|
},
|
|
},
|
|
User: &policy.SSHUserCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"*"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
// expect all three policy engines to exist
|
|
x509Policy: true,
|
|
sshHostPolicy: true,
|
|
sshUserPolicy: true,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/admin-x509-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
x509Policy: true,
|
|
sshHostPolicy: false,
|
|
sshUserPolicy: false,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/admin-ssh-host-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
Ssh: &linkedca.SSHPolicy{
|
|
Host: &linkedca.SSHHostPolicy{
|
|
Allow: &linkedca.SSHHostNames{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
},
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
x509Policy: false,
|
|
sshHostPolicy: true,
|
|
sshUserPolicy: false,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/admin-ssh-user-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
Ssh: &linkedca.SSHPolicy{
|
|
User: &linkedca.SSHUserPolicy{
|
|
Allow: &linkedca.SSHUserNames{
|
|
Emails: []string{"@example.com"},
|
|
},
|
|
},
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
wantErr: false,
|
|
expected: &exp{
|
|
x509Policy: false,
|
|
sshHostPolicy: false,
|
|
sshUserPolicy: true,
|
|
},
|
|
},
|
|
{
|
|
name: "ok/admin-full-policy",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
Deny: &linkedca.X509Names{
|
|
Dns: []string{"badhost.local"},
|
|
},
|
|
AllowWildcardLiteral: true,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
Ssh: &linkedca.SSHPolicy{
|
|
Host: &linkedca.SSHHostPolicy{
|
|
Allow: &linkedca.SSHHostNames{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
},
|
|
User: &linkedca.SSHUserPolicy{
|
|
Allow: &linkedca.SSHUserNames{
|
|
Emails: []string{"@example.com"},
|
|
},
|
|
},
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
wantErr: false,
|
|
expected: &exp{
|
|
// expect all three policy engines to exist
|
|
x509Policy: true,
|
|
sshHostPolicy: true,
|
|
sshUserPolicy: true,
|
|
},
|
|
},
|
|
{
|
|
// both DB and JSON config; DB config is taken if Admin API is enabled
|
|
name: "ok/admin-over-standalone",
|
|
config: &config.Config{
|
|
AuthorityConfig: &config.AuthConfig{
|
|
EnableAdmin: true,
|
|
Policy: &policy.Options{
|
|
SSH: &policy.SSHPolicyOptions{
|
|
Host: &policy.SSHHostCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"*.local"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
DNSDomains: []string{"badhost.local"},
|
|
},
|
|
},
|
|
User: &policy.SSHUserCertificateOptions{
|
|
AllowedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"*"},
|
|
},
|
|
DeniedNames: &policy.SSHNameOptions{
|
|
Principals: []string{"root"},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
ctx: context.Background(),
|
|
adminDB: &admin.MockDB{
|
|
MockGetAuthorityPolicy: func(ctx context.Context) (*linkedca.Policy, error) {
|
|
return &linkedca.Policy{
|
|
X509: &linkedca.X509Policy{
|
|
Allow: &linkedca.X509Names{
|
|
Dns: []string{"*.local"},
|
|
},
|
|
Deny: &linkedca.X509Names{
|
|
Dns: []string{"badhost.local"},
|
|
},
|
|
AllowWildcardLiteral: true,
|
|
DisableSubjectCommonNameVerification: false,
|
|
},
|
|
}, nil
|
|
},
|
|
},
|
|
wantErr: false,
|
|
expected: &exp{
|
|
// expect all three policy engines to exist
|
|
x509Policy: true,
|
|
sshHostPolicy: false,
|
|
sshUserPolicy: false,
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
a := &Authority{
|
|
config: tt.config,
|
|
adminDB: tt.adminDB,
|
|
}
|
|
if err := a.reloadPolicyEngines(tt.ctx); (err != nil) != tt.wantErr {
|
|
t.Errorf("Authority.reloadPolicyEngines() error = %v, wantErr %v", err, tt.wantErr)
|
|
}
|
|
|
|
// if expected value is set, check existence of the policy engines
|
|
// Check that they're always nil if the expected value is not set,
|
|
// which happens on errors.
|
|
if tt.expected != nil {
|
|
assert.Equal(t, tt.expected.x509Policy, a.x509Policy != nil)
|
|
assert.Equal(t, tt.expected.sshHostPolicy, a.sshHostPolicy != nil)
|
|
assert.Equal(t, tt.expected.sshUserPolicy, a.sshUserPolicy != nil)
|
|
} else {
|
|
assert.Nil(t, a.x509Policy)
|
|
assert.Nil(t, a.sshHostPolicy)
|
|
assert.Nil(t, a.sshUserPolicy)
|
|
}
|
|
})
|
|
}
|
|
}
|