2022-03-15 14:51:45 +00:00
|
|
|
package authority
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-03-21 14:53:59 +00:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/pkg/errors"
|
2022-03-15 14:51:45 +00:00
|
|
|
|
|
|
|
"go.step.sm/linkedca"
|
2022-03-21 14:53:59 +00:00
|
|
|
|
|
|
|
"github.com/smallstep/certificates/authority/admin"
|
|
|
|
authPolicy "github.com/smallstep/certificates/authority/policy"
|
|
|
|
policy "github.com/smallstep/certificates/policy"
|
2022-03-15 14:51:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (a *Authority) GetAuthorityPolicy(ctx context.Context) (*linkedca.Policy, error) {
|
|
|
|
a.adminMutex.Lock()
|
|
|
|
defer a.adminMutex.Unlock()
|
|
|
|
|
|
|
|
policy, err := a.adminDB.GetAuthorityPolicy(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return policy, nil
|
|
|
|
}
|
|
|
|
|
2022-03-24 09:54:45 +00:00
|
|
|
func (a *Authority) CreateAuthorityPolicy(ctx context.Context, adm *linkedca.Admin, policy *linkedca.Policy) (*linkedca.Policy, error) {
|
2022-03-15 14:51:45 +00:00
|
|
|
a.adminMutex.Lock()
|
|
|
|
defer a.adminMutex.Unlock()
|
|
|
|
|
2022-03-21 14:53:59 +00:00
|
|
|
if err := a.checkPolicy(ctx, adm, policy); err != nil {
|
2022-03-24 09:54:45 +00:00
|
|
|
return nil, err
|
2022-03-21 14:53:59 +00:00
|
|
|
}
|
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
if err := a.adminDB.CreateAuthorityPolicy(ctx, policy); err != nil {
|
2022-03-24 09:54:45 +00:00
|
|
|
return nil, err
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := a.reloadPolicyEngines(ctx); err != nil {
|
2022-03-24 09:54:45 +00:00
|
|
|
return nil, admin.WrapErrorISE(err, "error reloading policy engines when creating authority policy")
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 09:54:45 +00:00
|
|
|
return policy, nil // TODO: return the newly stored policy
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 09:54:45 +00:00
|
|
|
func (a *Authority) UpdateAuthorityPolicy(ctx context.Context, adm *linkedca.Admin, policy *linkedca.Policy) (*linkedca.Policy, error) {
|
2022-03-15 14:51:45 +00:00
|
|
|
a.adminMutex.Lock()
|
|
|
|
defer a.adminMutex.Unlock()
|
|
|
|
|
2022-03-21 14:53:59 +00:00
|
|
|
if err := a.checkPolicy(ctx, adm, policy); err != nil {
|
2022-03-24 09:54:45 +00:00
|
|
|
return nil, err
|
2022-03-21 14:53:59 +00:00
|
|
|
}
|
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
if err := a.adminDB.UpdateAuthorityPolicy(ctx, policy); err != nil {
|
2022-03-24 09:54:45 +00:00
|
|
|
return nil, err
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := a.reloadPolicyEngines(ctx); err != nil {
|
2022-03-24 09:54:45 +00:00
|
|
|
return nil, admin.WrapErrorISE(err, "error reloading policy engines when updating authority policy")
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 09:54:45 +00:00
|
|
|
return policy, nil // TODO: return the updated stored policy
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Authority) RemoveAuthorityPolicy(ctx context.Context) error {
|
|
|
|
a.adminMutex.Lock()
|
|
|
|
defer a.adminMutex.Unlock()
|
|
|
|
|
|
|
|
if err := a.adminDB.DeleteAuthorityPolicy(ctx); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := a.reloadPolicyEngines(ctx); err != nil {
|
2022-03-21 14:53:59 +00:00
|
|
|
return admin.WrapErrorISE(err, "error reloading policy engines when deleting authority policy")
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:53:59 +00:00
|
|
|
func (a *Authority) checkPolicy(ctx context.Context, adm *linkedca.Admin, p *linkedca.Policy) error {
|
|
|
|
|
|
|
|
// convert the policy; return early if nil
|
|
|
|
policyOptions := policyToCertificates(p)
|
|
|
|
if policyOptions == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
engine, err := authPolicy.NewX509PolicyEngine(policyOptions.GetX509Options())
|
|
|
|
if err != nil {
|
|
|
|
return admin.WrapErrorISE(err, "error creating temporary policy engine")
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(hs): Provide option to force the policy, even when the admin subject would be locked out?
|
|
|
|
|
|
|
|
sans := []string{adm.Subject}
|
|
|
|
if err := isAllowed(engine, sans); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(hs): perform the check for other admin subjects too?
|
|
|
|
// What logic to use for that: do all admins need access? Only super admins? At least one?
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func isAllowed(engine authPolicy.X509Policy, sans []string) error {
|
|
|
|
var (
|
|
|
|
allowed bool
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
if allowed, err = engine.AreSANsAllowed(sans); err != nil {
|
|
|
|
var policyErr *policy.NamePolicyError
|
|
|
|
if errors.As(err, &policyErr); policyErr.Reason == policy.NotAuthorizedForThisName {
|
|
|
|
return fmt.Errorf("the provided policy would lock out %s from the CA. Please update your policy to include %s as an allowed name", sans, sans)
|
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !allowed {
|
|
|
|
return fmt.Errorf("the provided policy would lock out %s from the CA. Please update your policy to include %s as an allowed name", sans, sans)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func policyToCertificates(p *linkedca.Policy) *authPolicy.Options {
|
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
// return early
|
|
|
|
if p == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2022-03-21 14:53:59 +00:00
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
// prepare full policy struct
|
2022-03-21 14:53:59 +00:00
|
|
|
opts := &authPolicy.Options{
|
|
|
|
X509: &authPolicy.X509PolicyOptions{
|
|
|
|
AllowedNames: &authPolicy.X509NameOptions{},
|
|
|
|
DeniedNames: &authPolicy.X509NameOptions{},
|
2022-03-15 14:51:45 +00:00
|
|
|
},
|
2022-03-21 14:53:59 +00:00
|
|
|
SSH: &authPolicy.SSHPolicyOptions{
|
|
|
|
Host: &authPolicy.SSHHostCertificateOptions{
|
|
|
|
AllowedNames: &authPolicy.SSHNameOptions{},
|
|
|
|
DeniedNames: &authPolicy.SSHNameOptions{},
|
2022-03-15 14:51:45 +00:00
|
|
|
},
|
2022-03-21 14:53:59 +00:00
|
|
|
User: &authPolicy.SSHUserCertificateOptions{
|
|
|
|
AllowedNames: &authPolicy.SSHNameOptions{},
|
|
|
|
DeniedNames: &authPolicy.SSHNameOptions{},
|
2022-03-15 14:51:45 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2022-03-21 14:53:59 +00:00
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
// fill x509 policy configuration
|
|
|
|
if p.X509 != nil {
|
|
|
|
if p.X509.Allow != nil {
|
|
|
|
opts.X509.AllowedNames.DNSDomains = p.X509.Allow.Dns
|
|
|
|
opts.X509.AllowedNames.IPRanges = p.X509.Allow.Ips
|
|
|
|
opts.X509.AllowedNames.EmailAddresses = p.X509.Allow.Emails
|
|
|
|
opts.X509.AllowedNames.URIDomains = p.X509.Allow.Uris
|
|
|
|
}
|
|
|
|
if p.X509.Deny != nil {
|
|
|
|
opts.X509.DeniedNames.DNSDomains = p.X509.Deny.Dns
|
|
|
|
opts.X509.DeniedNames.IPRanges = p.X509.Deny.Ips
|
|
|
|
opts.X509.DeniedNames.EmailAddresses = p.X509.Deny.Emails
|
|
|
|
opts.X509.DeniedNames.URIDomains = p.X509.Deny.Uris
|
|
|
|
}
|
|
|
|
}
|
2022-03-21 14:53:59 +00:00
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
// fill ssh policy configuration
|
|
|
|
if p.Ssh != nil {
|
|
|
|
if p.Ssh.Host != nil {
|
|
|
|
if p.Ssh.Host.Allow != nil {
|
|
|
|
opts.SSH.Host.AllowedNames.DNSDomains = p.Ssh.Host.Allow.Dns
|
|
|
|
opts.SSH.Host.AllowedNames.IPRanges = p.Ssh.Host.Allow.Ips
|
|
|
|
opts.SSH.Host.AllowedNames.EmailAddresses = p.Ssh.Host.Allow.Principals
|
|
|
|
}
|
|
|
|
if p.Ssh.Host.Deny != nil {
|
|
|
|
opts.SSH.Host.DeniedNames.DNSDomains = p.Ssh.Host.Deny.Dns
|
|
|
|
opts.SSH.Host.DeniedNames.IPRanges = p.Ssh.Host.Deny.Ips
|
|
|
|
opts.SSH.Host.DeniedNames.Principals = p.Ssh.Host.Deny.Principals
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if p.Ssh.User != nil {
|
|
|
|
if p.Ssh.User.Allow != nil {
|
|
|
|
opts.SSH.User.AllowedNames.EmailAddresses = p.Ssh.User.Allow.Emails
|
|
|
|
opts.SSH.User.AllowedNames.Principals = p.Ssh.User.Allow.Principals
|
|
|
|
}
|
|
|
|
if p.Ssh.User.Deny != nil {
|
|
|
|
opts.SSH.User.DeniedNames.EmailAddresses = p.Ssh.User.Deny.Emails
|
|
|
|
opts.SSH.User.DeniedNames.Principals = p.Ssh.User.Deny.Principals
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return opts
|
|
|
|
}
|