Enforce a duration for identity certificates.
This commit is contained in:
parent
041aeb7a90
commit
64f26c0f40
3 changed files with 41 additions and 12 deletions
29
api/ssh.go
29
api/ssh.go
|
@ -308,14 +308,6 @@ func (h *caHandler) SSHSign(w http.ResponseWriter, r *http.Request) {
|
||||||
// Sign identity certificate if available.
|
// Sign identity certificate if available.
|
||||||
var identityCertificate []Certificate
|
var identityCertificate []Certificate
|
||||||
if cr := body.IdentityCSR.CertificateRequest; cr != nil {
|
if cr := body.IdentityCSR.CertificateRequest; cr != nil {
|
||||||
var opts provisioner.Options
|
|
||||||
// Use same duration as ssh certificate for user certificates
|
|
||||||
if cert.CertType == ssh.UserCert {
|
|
||||||
opts = provisioner.Options{
|
|
||||||
NotBefore: provisioner.NewTimeDuration(time.Unix(int64(cert.ValidAfter), 0)),
|
|
||||||
NotAfter: provisioner.NewTimeDuration(time.Unix(int64(cert.ValidBefore), 0)),
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ctx := authority.NewContextWithSkipTokenReuse(r.Context())
|
ctx := authority.NewContextWithSkipTokenReuse(r.Context())
|
||||||
ctx = provisioner.NewContextWithMethod(ctx, provisioner.SignMethod)
|
ctx = provisioner.NewContextWithMethod(ctx, provisioner.SignMethod)
|
||||||
signOpts, err := h.Authority.Authorize(ctx, body.OTT)
|
signOpts, err := h.Authority.Authorize(ctx, body.OTT)
|
||||||
|
@ -323,7 +315,14 @@ func (h *caHandler) SSHSign(w http.ResponseWriter, r *http.Request) {
|
||||||
WriteError(w, errs.UnauthorizedErr(err))
|
WriteError(w, errs.UnauthorizedErr(err))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
certChain, err := h.Authority.Sign(cr, opts, signOpts...)
|
|
||||||
|
// Enforce the same duration as ssh certificate.
|
||||||
|
signOpts = append(signOpts, &identityModifier{
|
||||||
|
NotBefore: time.Unix(int64(cert.ValidAfter), 0),
|
||||||
|
NotAfter: time.Unix(int64(cert.ValidBefore), 0),
|
||||||
|
})
|
||||||
|
|
||||||
|
certChain, err := h.Authority.Sign(cr, provisioner.Options{}, signOpts...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
WriteError(w, errs.ForbiddenErr(err))
|
WriteError(w, errs.ForbiddenErr(err))
|
||||||
return
|
return
|
||||||
|
@ -483,3 +482,15 @@ func (h *caHandler) SSHBastion(w http.ResponseWriter, r *http.Request) {
|
||||||
Bastion: bastion,
|
Bastion: bastion,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// identityModifier is a custom modifier used to force a fixed duration.
|
||||||
|
type identityModifier struct {
|
||||||
|
NotBefore time.Time
|
||||||
|
NotAfter time.Time
|
||||||
|
}
|
||||||
|
|
||||||
|
func (m *identityModifier) Constrain(cert *x509.Certificate) error {
|
||||||
|
cert.NotBefore = m.NotBefore
|
||||||
|
cert.NotAfter = m.NotAfter
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
|
@ -47,6 +47,13 @@ type ProfileModifier interface {
|
||||||
Option(o Options) x509util.WithOption
|
Option(o Options) x509util.WithOption
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// CertificateConstrainModifier is the interface used to modify a certificate
|
||||||
|
// after validation.
|
||||||
|
type CertificateConstrainModifier interface {
|
||||||
|
SignOption
|
||||||
|
Constrain(cert *x509.Certificate) error
|
||||||
|
}
|
||||||
|
|
||||||
// profileWithOption is a wrapper against x509util.WithOption to conform the
|
// profileWithOption is a wrapper against x509util.WithOption to conform the
|
||||||
// interface.
|
// interface.
|
||||||
type profileWithOption x509util.WithOption
|
type profileWithOption x509util.WithOption
|
||||||
|
|
|
@ -61,9 +61,10 @@ func withDefaultASN1DN(def *x509util.ASN1DN) x509util.WithOption {
|
||||||
// Sign creates a signed certificate from a certificate signing request.
|
// Sign creates a signed certificate from a certificate signing request.
|
||||||
func (a *Authority) Sign(csr *x509.CertificateRequest, signOpts provisioner.Options, extraOpts ...provisioner.SignOption) ([]*x509.Certificate, error) {
|
func (a *Authority) Sign(csr *x509.CertificateRequest, signOpts provisioner.Options, extraOpts ...provisioner.SignOption) ([]*x509.Certificate, error) {
|
||||||
var (
|
var (
|
||||||
opts = []interface{}{errs.WithKeyVal("csr", csr), errs.WithKeyVal("signOptions", signOpts)}
|
opts = []interface{}{errs.WithKeyVal("csr", csr), errs.WithKeyVal("signOptions", signOpts)}
|
||||||
mods = []x509util.WithOption{withDefaultASN1DN(a.config.AuthorityConfig.Template)}
|
mods = []x509util.WithOption{withDefaultASN1DN(a.config.AuthorityConfig.Template)}
|
||||||
certValidators = []provisioner.CertificateValidator{}
|
certValidators = []provisioner.CertificateValidator{}
|
||||||
|
constrainModifiers = []provisioner.CertificateConstrainModifier{}
|
||||||
)
|
)
|
||||||
|
|
||||||
// Set backdate with the configured value
|
// Set backdate with the configured value
|
||||||
|
@ -79,6 +80,8 @@ func (a *Authority) Sign(csr *x509.CertificateRequest, signOpts provisioner.Opti
|
||||||
}
|
}
|
||||||
case provisioner.ProfileModifier:
|
case provisioner.ProfileModifier:
|
||||||
mods = append(mods, k.Option(signOpts))
|
mods = append(mods, k.Option(signOpts))
|
||||||
|
case provisioner.CertificateConstrainModifier:
|
||||||
|
constrainModifiers = append(constrainModifiers, k)
|
||||||
default:
|
default:
|
||||||
return nil, errs.InternalServer("authority.Sign; invalid extra option type %T", append([]interface{}{k}, opts...)...)
|
return nil, errs.InternalServer("authority.Sign; invalid extra option type %T", append([]interface{}{k}, opts...)...)
|
||||||
}
|
}
|
||||||
|
@ -93,12 +96,20 @@ func (a *Authority) Sign(csr *x509.CertificateRequest, signOpts provisioner.Opti
|
||||||
return nil, errs.Wrap(http.StatusInternalServerError, err, "authority.Sign", opts...)
|
return nil, errs.Wrap(http.StatusInternalServerError, err, "authority.Sign", opts...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Certificate validation
|
||||||
for _, v := range certValidators {
|
for _, v := range certValidators {
|
||||||
if err := v.Valid(leaf.Subject(), signOpts); err != nil {
|
if err := v.Valid(leaf.Subject(), signOpts); err != nil {
|
||||||
return nil, errs.Wrap(http.StatusUnauthorized, err, "authority.Sign", opts...)
|
return nil, errs.Wrap(http.StatusUnauthorized, err, "authority.Sign", opts...)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Certificate modifier after validation
|
||||||
|
for _, m := range constrainModifiers {
|
||||||
|
if err := m.Constrain(leaf.Subject()); err != nil {
|
||||||
|
return nil, errs.Wrap(http.StatusUnauthorized, err, "authority.Sign", opts...)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
crtBytes, err := leaf.CreateCertificate()
|
crtBytes, err := leaf.CreateCertificate()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errs.Wrap(http.StatusInternalServerError, err,
|
return nil, errs.Wrap(http.StatusInternalServerError, err,
|
||||||
|
|
Loading…
Reference in a new issue