2022-03-15 14:51:45 +00:00
|
|
|
package authority
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-03-24 13:55:40 +00:00
|
|
|
"errors"
|
2022-03-21 14:53:59 +00:00
|
|
|
"fmt"
|
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
"go.step.sm/linkedca"
|
2022-03-21 14:53:59 +00:00
|
|
|
|
2022-04-21 23:20:38 +00:00
|
|
|
"github.com/smallstep/certificates/authority/admin"
|
2022-03-21 14:53:59 +00:00
|
|
|
authPolicy "github.com/smallstep/certificates/authority/policy"
|
|
|
|
policy "github.com/smallstep/certificates/policy"
|
2022-03-15 14:51:45 +00:00
|
|
|
)
|
|
|
|
|
2022-04-04 11:58:16 +00:00
|
|
|
type policyErrorType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
_ policyErrorType = iota
|
|
|
|
AdminLockOut
|
|
|
|
StoreFailure
|
|
|
|
ReloadFailure
|
|
|
|
ConfigurationFailure
|
|
|
|
EvaluationFailure
|
|
|
|
InternalFailure
|
|
|
|
)
|
|
|
|
|
|
|
|
type PolicyError struct {
|
|
|
|
Typ policyErrorType
|
2022-04-15 08:43:10 +00:00
|
|
|
Err error
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PolicyError) Error() string {
|
2022-04-15 08:43:10 +00:00
|
|
|
return p.Err.Error()
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
|
|
|
|
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()
|
|
|
|
|
2022-03-24 12:10:49 +00:00
|
|
|
p, err := a.adminDB.GetAuthorityPolicy(ctx)
|
2022-03-15 14:51:45 +00:00
|
|
|
if err != nil {
|
2022-04-24 14:29:31 +00:00
|
|
|
return nil, &PolicyError{
|
|
|
|
Typ: InternalFailure,
|
|
|
|
Err: err,
|
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 12:10:49 +00:00
|
|
|
return p, nil
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 12:10:49 +00:00
|
|
|
func (a *Authority) CreateAuthorityPolicy(ctx context.Context, adm *linkedca.Admin, p *linkedca.Policy) (*linkedca.Policy, error) {
|
2022-03-15 14:51:45 +00:00
|
|
|
a.adminMutex.Lock()
|
|
|
|
defer a.adminMutex.Unlock()
|
|
|
|
|
2022-04-04 11:58:16 +00:00
|
|
|
if err := a.checkAuthorityPolicy(ctx, adm, p); err != nil {
|
2022-04-24 14:29:31 +00:00
|
|
|
return nil, err
|
2022-03-21 14:53:59 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 12:10:49 +00:00
|
|
|
if err := a.adminDB.CreateAuthorityPolicy(ctx, p); err != nil {
|
2022-04-04 11:58:16 +00:00
|
|
|
return nil, &PolicyError{
|
|
|
|
Typ: StoreFailure,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: err,
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := a.reloadPolicyEngines(ctx); err != nil {
|
2022-04-04 11:58:16 +00:00
|
|
|
return nil, &PolicyError{
|
|
|
|
Typ: ReloadFailure,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: fmt.Errorf("error reloading policy engines when creating authority policy: %w", err),
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-04-18 19:14:30 +00:00
|
|
|
return p, nil
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 12:10:49 +00:00
|
|
|
func (a *Authority) UpdateAuthorityPolicy(ctx context.Context, adm *linkedca.Admin, p *linkedca.Policy) (*linkedca.Policy, error) {
|
2022-03-15 14:51:45 +00:00
|
|
|
a.adminMutex.Lock()
|
|
|
|
defer a.adminMutex.Unlock()
|
|
|
|
|
2022-04-04 11:58:16 +00:00
|
|
|
if err := a.checkAuthorityPolicy(ctx, adm, p); err != nil {
|
2022-03-24 09:54:45 +00:00
|
|
|
return nil, err
|
2022-03-21 14:53:59 +00:00
|
|
|
}
|
|
|
|
|
2022-03-24 12:10:49 +00:00
|
|
|
if err := a.adminDB.UpdateAuthorityPolicy(ctx, p); err != nil {
|
2022-04-04 11:58:16 +00:00
|
|
|
return nil, &PolicyError{
|
|
|
|
Typ: StoreFailure,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: err,
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := a.reloadPolicyEngines(ctx); err != nil {
|
2022-04-04 11:58:16 +00:00
|
|
|
return nil, &PolicyError{
|
|
|
|
Typ: ReloadFailure,
|
2022-04-24 14:29:31 +00:00
|
|
|
Err: fmt.Errorf("error reloading policy engines when updating authority policy: %w", err),
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
2022-04-18 19:14:30 +00:00
|
|
|
return p, nil
|
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 {
|
2022-04-04 11:58:16 +00:00
|
|
|
return &PolicyError{
|
|
|
|
Typ: StoreFailure,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: err,
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := a.reloadPolicyEngines(ctx); err != nil {
|
2022-04-04 11:58:16 +00:00
|
|
|
return &PolicyError{
|
|
|
|
Typ: ReloadFailure,
|
2022-04-18 19:14:30 +00:00
|
|
|
Err: fmt.Errorf("error reloading policy engines when deleting authority policy: %w", err),
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-04 11:58:16 +00:00
|
|
|
func (a *Authority) checkAuthorityPolicy(ctx context.Context, currentAdmin *linkedca.Admin, p *linkedca.Policy) error {
|
|
|
|
|
|
|
|
// no policy and thus nothing to evaluate; return early
|
|
|
|
if p == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// get all current admins from the database
|
|
|
|
allAdmins, err := a.adminDB.GetAdmins(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return &PolicyError{
|
|
|
|
Typ: InternalFailure,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: fmt.Errorf("error retrieving admins: %w", err),
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return a.checkPolicy(ctx, currentAdmin, allAdmins, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Authority) checkProvisionerPolicy(ctx context.Context, currentAdmin *linkedca.Admin, provName string, p *linkedca.Policy) error {
|
|
|
|
|
|
|
|
// no policy and thus nothing to evaluate; return early
|
|
|
|
if p == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-24 14:29:31 +00:00
|
|
|
// get all admins for the provisioner; ignoring case in which they're not found
|
|
|
|
allProvisionerAdmins, _ := a.admins.LoadByProvisioner(provName)
|
2022-04-04 11:58:16 +00:00
|
|
|
|
|
|
|
return a.checkPolicy(ctx, currentAdmin, allProvisionerAdmins, p)
|
|
|
|
}
|
|
|
|
|
2022-03-30 12:21:39 +00:00
|
|
|
// checkPolicy checks if a new or updated policy configuration results in the user
|
|
|
|
// locking themselves or other admins out of the CA.
|
2022-04-04 11:58:16 +00:00
|
|
|
func (a *Authority) checkPolicy(ctx context.Context, currentAdmin *linkedca.Admin, otherAdmins []*linkedca.Admin, p *linkedca.Policy) error {
|
2022-03-21 14:53:59 +00:00
|
|
|
|
|
|
|
// convert the policy; return early if nil
|
|
|
|
policyOptions := policyToCertificates(p)
|
|
|
|
if policyOptions == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
engine, err := authPolicy.NewX509PolicyEngine(policyOptions.GetX509Options())
|
|
|
|
if err != nil {
|
2022-04-04 11:58:16 +00:00
|
|
|
return &PolicyError{
|
|
|
|
Typ: ConfigurationFailure,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: err,
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-21 14:53:59 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 11:58:16 +00:00
|
|
|
// when an empty X.509 policy is provided, the resulting engine is nil
|
2022-03-30 12:21:39 +00:00
|
|
|
// and there's no policy to evaluate.
|
|
|
|
if engine == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:53:59 +00:00
|
|
|
// TODO(hs): Provide option to force the policy, even when the admin subject would be locked out?
|
|
|
|
|
2022-03-30 13:39:03 +00:00
|
|
|
// check if the admin user that instructed the authority policy to be
|
|
|
|
// created or updated, would still be allowed when the provided policy
|
2022-04-04 11:58:16 +00:00
|
|
|
// would be applied.
|
|
|
|
sans := []string{currentAdmin.GetSubject()}
|
2022-03-21 14:53:59 +00:00
|
|
|
if err := isAllowed(engine, sans); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-03-30 13:39:03 +00:00
|
|
|
// loop through admins to verify that none of them would be
|
|
|
|
// locked out when the new policy were to be applied. Returns
|
|
|
|
// an error with a message that includes the admin subject that
|
2022-04-04 11:58:16 +00:00
|
|
|
// would be locked out.
|
|
|
|
for _, adm := range otherAdmins {
|
2022-03-30 13:39:03 +00:00
|
|
|
sans = []string{adm.GetSubject()}
|
|
|
|
if err := isAllowed(engine, sans); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(hs): mask the error message for non-super admins?
|
2022-03-21 14:53:59 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-04-19 15:10:13 +00:00
|
|
|
// reloadPolicyEngines reloads x509 and SSH policy engines using
|
|
|
|
// configuration stored in the DB or from the configuration file.
|
|
|
|
func (a *Authority) reloadPolicyEngines(ctx context.Context) error {
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
policyOptions *authPolicy.Options
|
|
|
|
)
|
2022-04-25 09:02:03 +00:00
|
|
|
|
2022-04-19 15:10:13 +00:00
|
|
|
if a.config.AuthorityConfig.EnableAdmin {
|
|
|
|
|
|
|
|
// temporarily disable policy loading when LinkedCA is in use
|
|
|
|
if _, ok := a.adminDB.(*linkedCaClient); ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
linkedPolicy, err := a.adminDB.GetAuthorityPolicy(ctx)
|
|
|
|
if err != nil {
|
2022-04-21 23:20:38 +00:00
|
|
|
var ae *admin.Error
|
|
|
|
if isAdminError := errors.As(err, &ae); (isAdminError && ae.Type != admin.ErrorNotFoundType.String()) || !isAdminError {
|
|
|
|
return fmt.Errorf("error getting policy to (re)load policy engines: %w", err)
|
|
|
|
}
|
2022-04-19 15:10:13 +00:00
|
|
|
}
|
|
|
|
policyOptions = policyToCertificates(linkedPolicy)
|
|
|
|
} else {
|
|
|
|
policyOptions = a.config.AuthorityConfig.Policy
|
|
|
|
}
|
|
|
|
|
|
|
|
// if no new or updated policy option is set, clear policy engines that (may have)
|
|
|
|
// been configured before and return early
|
|
|
|
if policyOptions == nil {
|
|
|
|
a.x509Policy = nil
|
|
|
|
a.sshHostPolicy = nil
|
|
|
|
a.sshUserPolicy = nil
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
x509Policy authPolicy.X509Policy
|
|
|
|
sshHostPolicy authPolicy.HostPolicy
|
|
|
|
sshUserPolicy authPolicy.UserPolicy
|
|
|
|
)
|
|
|
|
|
|
|
|
// initialize the x509 allow/deny policy engine
|
|
|
|
if x509Policy, err = authPolicy.NewX509PolicyEngine(policyOptions.GetX509Options()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialize the SSH allow/deny policy engine for host certificates
|
|
|
|
if sshHostPolicy, err = authPolicy.NewSSHHostPolicyEngine(policyOptions.GetSSHOptions()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialize the SSH allow/deny policy engine for user certificates
|
|
|
|
if sshUserPolicy, err = authPolicy.NewSSHUserPolicyEngine(policyOptions.GetSSHOptions()); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// set all policy engines; all or nothing
|
|
|
|
a.x509Policy = x509Policy
|
|
|
|
a.sshHostPolicy = sshHostPolicy
|
|
|
|
a.sshUserPolicy = sshUserPolicy
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:53:59 +00:00
|
|
|
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
|
2022-04-04 13:31:28 +00:00
|
|
|
isNamePolicyError := errors.As(err, &policyErr)
|
|
|
|
if isNamePolicyError && policyErr.Reason == policy.NotAuthorizedForThisName {
|
2022-04-04 11:58:16 +00:00
|
|
|
return &PolicyError{
|
|
|
|
Typ: AdminLockOut,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: 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),
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return &PolicyError{
|
|
|
|
Typ: EvaluationFailure,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: err,
|
2022-03-21 14:53:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !allowed {
|
2022-04-04 11:58:16 +00:00
|
|
|
return &PolicyError{
|
|
|
|
Typ: AdminLockOut,
|
2022-04-15 08:43:10 +00:00
|
|
|
Err: 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),
|
2022-04-04 11:58:16 +00:00
|
|
|
}
|
2022-03-21 14:53:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-04-19 12:41:36 +00:00
|
|
|
// return early if x509 nor SSH is set
|
|
|
|
if p.GetX509() == nil && p.GetSsh() == nil {
|
|
|
|
return nil
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
2022-03-21 14:53:59 +00:00
|
|
|
|
2022-04-19 12:41:36 +00:00
|
|
|
opts := &authPolicy.Options{}
|
|
|
|
|
2022-03-15 14:51:45 +00:00
|
|
|
// fill x509 policy configuration
|
2022-04-21 10:14:03 +00:00
|
|
|
if x509 := p.GetX509(); x509 != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.X509 = &authPolicy.X509PolicyOptions{}
|
2022-04-21 10:14:03 +00:00
|
|
|
if allow := x509.GetAllow(); allow != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.X509.AllowedNames = &authPolicy.X509NameOptions{}
|
|
|
|
if allow.Dns != nil {
|
|
|
|
opts.X509.AllowedNames.DNSDomains = allow.Dns
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if allow.Ips != nil {
|
|
|
|
opts.X509.AllowedNames.IPRanges = allow.Ips
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if allow.Emails != nil {
|
|
|
|
opts.X509.AllowedNames.EmailAddresses = allow.Emails
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if allow.Uris != nil {
|
|
|
|
opts.X509.AllowedNames.URIDomains = allow.Uris
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
2022-04-21 10:14:03 +00:00
|
|
|
if deny := x509.GetDeny(); deny != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.X509.DeniedNames = &authPolicy.X509NameOptions{}
|
|
|
|
if deny.Dns != nil {
|
|
|
|
opts.X509.DeniedNames.DNSDomains = deny.Dns
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if deny.Ips != nil {
|
|
|
|
opts.X509.DeniedNames.IPRanges = deny.Ips
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if deny.Emails != nil {
|
|
|
|
opts.X509.DeniedNames.EmailAddresses = deny.Emails
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if deny.Uris != nil {
|
|
|
|
opts.X509.DeniedNames.URIDomains = deny.Uris
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
2022-04-21 21:45:05 +00:00
|
|
|
|
|
|
|
opts.X509.AllowWildcardLiteral = x509.AllowWildcardLiteral
|
|
|
|
opts.X509.DisableSubjectCommonNameVerification = x509.DisableSubjectCommonNameVerification
|
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 ssh policy configuration
|
2022-04-21 10:14:03 +00:00
|
|
|
if ssh := p.GetSsh(); ssh != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.SSH = &authPolicy.SSHPolicyOptions{}
|
2022-04-21 10:14:03 +00:00
|
|
|
if host := ssh.GetHost(); host != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.SSH.Host = &authPolicy.SSHHostCertificateOptions{}
|
2022-04-21 10:14:03 +00:00
|
|
|
if allow := host.GetAllow(); allow != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.SSH.Host.AllowedNames = &authPolicy.SSHNameOptions{}
|
|
|
|
if allow.Dns != nil {
|
|
|
|
opts.SSH.Host.AllowedNames.DNSDomains = allow.Dns
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if allow.Ips != nil {
|
|
|
|
opts.SSH.Host.AllowedNames.IPRanges = allow.Ips
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if allow.Principals != nil {
|
|
|
|
opts.SSH.Host.AllowedNames.Principals = allow.Principals
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
2022-04-21 10:14:03 +00:00
|
|
|
if deny := host.GetDeny(); deny != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.SSH.Host.DeniedNames = &authPolicy.SSHNameOptions{}
|
|
|
|
if deny.Dns != nil {
|
|
|
|
opts.SSH.Host.DeniedNames.DNSDomains = deny.Dns
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if deny.Ips != nil {
|
|
|
|
opts.SSH.Host.DeniedNames.IPRanges = deny.Ips
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if deny.Principals != nil {
|
|
|
|
opts.SSH.Host.DeniedNames.Principals = deny.Principals
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-21 10:14:03 +00:00
|
|
|
if user := ssh.GetUser(); user != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.SSH.User = &authPolicy.SSHUserCertificateOptions{}
|
2022-04-21 10:14:03 +00:00
|
|
|
if allow := user.GetAllow(); allow != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.SSH.User.AllowedNames = &authPolicy.SSHNameOptions{}
|
|
|
|
if allow.Emails != nil {
|
|
|
|
opts.SSH.User.AllowedNames.EmailAddresses = allow.Emails
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if allow.Principals != nil {
|
|
|
|
opts.SSH.User.AllowedNames.Principals = allow.Principals
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
2022-04-21 10:14:03 +00:00
|
|
|
if deny := user.GetDeny(); deny != nil {
|
2022-04-19 12:41:36 +00:00
|
|
|
opts.SSH.User.DeniedNames = &authPolicy.SSHNameOptions{}
|
|
|
|
if deny.Emails != nil {
|
|
|
|
opts.SSH.User.DeniedNames.EmailAddresses = deny.Emails
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-04-19 12:41:36 +00:00
|
|
|
if deny.Principals != nil {
|
|
|
|
opts.SSH.User.DeniedNames.Principals = deny.Principals
|
2022-03-30 12:21:39 +00:00
|
|
|
}
|
2022-03-15 14:51:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return opts
|
|
|
|
}
|