2019-08-01 00:46:28 +00:00
|
|
|
package provisioner
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto"
|
|
|
|
"fmt"
|
2020-08-04 01:10:29 +00:00
|
|
|
"net/http"
|
2019-08-01 00:46:28 +00:00
|
|
|
"reflect"
|
|
|
|
"time"
|
|
|
|
|
2020-08-04 01:10:29 +00:00
|
|
|
"github.com/smallstep/certificates/errs"
|
2020-08-10 18:26:51 +00:00
|
|
|
"go.step.sm/crypto/sshutil"
|
2019-08-01 00:46:28 +00:00
|
|
|
"golang.org/x/crypto/ssh"
|
|
|
|
)
|
|
|
|
|
2020-07-23 01:24:45 +00:00
|
|
|
func validateSSHCertificate(cert *ssh.Certificate, opts *SignSSHOptions) error {
|
2019-08-01 00:46:28 +00:00
|
|
|
switch {
|
|
|
|
case cert == nil:
|
|
|
|
return fmt.Errorf("certificate is nil")
|
|
|
|
case cert.Signature == nil:
|
|
|
|
return fmt.Errorf("certificate signature is nil")
|
|
|
|
case cert.SignatureKey == nil:
|
|
|
|
return fmt.Errorf("certificate signature is nil")
|
|
|
|
case !reflect.DeepEqual(cert.ValidPrincipals, opts.Principals):
|
|
|
|
return fmt.Errorf("certificate principals are not equal, want %v, got %v", opts.Principals, cert.ValidPrincipals)
|
|
|
|
case cert.CertType != ssh.UserCert && cert.CertType != ssh.HostCert:
|
|
|
|
return fmt.Errorf("certificate type %v is not valid", cert.CertType)
|
|
|
|
case opts.CertType == "user" && cert.CertType != ssh.UserCert:
|
|
|
|
return fmt.Errorf("certificate type is not valid, want %v, got %v", ssh.UserCert, cert.CertType)
|
|
|
|
case opts.CertType == "host" && cert.CertType != ssh.HostCert:
|
|
|
|
return fmt.Errorf("certificate type is not valid, want %v, got %v", ssh.HostCert, cert.CertType)
|
|
|
|
case cert.ValidAfter != uint64(opts.ValidAfter.Unix()):
|
|
|
|
return fmt.Errorf("certificate valid after is not valid, want %v, got %v", opts.ValidAfter.Unix(), time.Unix(int64(cert.ValidAfter), 0))
|
|
|
|
case cert.ValidBefore != uint64(opts.ValidBefore.Unix()):
|
|
|
|
return fmt.Errorf("certificate valid after is not valid, want %v, got %v", opts.ValidAfter.Unix(), time.Unix(int64(cert.ValidAfter), 0))
|
|
|
|
case opts.CertType == "user" && len(cert.Extensions) != 5:
|
|
|
|
return fmt.Errorf("certificate extensions number is invalid, want 5, got %d", len(cert.Extensions))
|
|
|
|
case opts.CertType == "host" && len(cert.Extensions) != 0:
|
|
|
|
return fmt.Errorf("certificate extensions number is invalid, want 0, got %d", len(cert.Extensions))
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-23 01:24:45 +00:00
|
|
|
func signSSHCertificate(key crypto.PublicKey, opts SignSSHOptions, signOpts []SignOption, signKey crypto.Signer) (*ssh.Certificate, error) {
|
2019-08-01 00:46:28 +00:00
|
|
|
pub, err := ssh.NewPublicKey(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-01-24 06:04:34 +00:00
|
|
|
var mods []SSHCertModifier
|
2020-08-04 01:10:29 +00:00
|
|
|
var certOptions []sshutil.Option
|
2020-01-24 06:04:34 +00:00
|
|
|
var validators []SSHCertValidator
|
2019-08-01 00:46:28 +00:00
|
|
|
|
|
|
|
for _, op := range signOpts {
|
|
|
|
switch o := op.(type) {
|
2020-08-04 01:10:29 +00:00
|
|
|
// add options to NewCertificate
|
|
|
|
case SSHCertificateOptions:
|
|
|
|
certOptions = append(certOptions, o.Options(opts)...)
|
2019-08-01 00:46:28 +00:00
|
|
|
// modify the ssh.Certificate
|
2020-01-24 06:04:34 +00:00
|
|
|
case SSHCertModifier:
|
2019-08-01 00:46:28 +00:00
|
|
|
mods = append(mods, o)
|
|
|
|
// validate the ssh.Certificate
|
2020-01-24 06:04:34 +00:00
|
|
|
case SSHCertValidator:
|
2019-08-01 00:46:28 +00:00
|
|
|
validators = append(validators, o)
|
|
|
|
// validate the given SSHOptions
|
2020-01-24 06:04:34 +00:00
|
|
|
case SSHCertOptionsValidator:
|
2019-08-01 00:46:28 +00:00
|
|
|
if err := o.Valid(opts); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("signSSH: invalid extra option type %T", o)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-04 01:10:29 +00:00
|
|
|
// Simulated certificate request with request options.
|
|
|
|
cr := sshutil.CertificateRequest{
|
|
|
|
Type: opts.CertType,
|
|
|
|
KeyID: opts.KeyID,
|
|
|
|
Principals: opts.Principals,
|
|
|
|
Key: pub,
|
2019-08-01 00:46:28 +00:00
|
|
|
}
|
|
|
|
|
2020-08-04 01:10:29 +00:00
|
|
|
// Create certificate from template.
|
|
|
|
certificate, err := sshutil.NewCertificate(cr, certOptions...)
|
|
|
|
if err != nil {
|
|
|
|
if _, ok := err.(*sshutil.TemplateError); ok {
|
|
|
|
return nil, errs.NewErr(http.StatusBadRequest, err,
|
|
|
|
errs.WithMessage(err.Error()),
|
|
|
|
errs.WithKeyVal("signOptions", signOpts),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
return nil, errs.Wrap(http.StatusInternalServerError, err, "authority.SignSSH")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get actual *ssh.Certificate and continue with provisioner modifiers.
|
|
|
|
cert := certificate.GetCertificate()
|
|
|
|
|
|
|
|
// Use SignSSHOptions to modify the certificate validity. It will be later
|
|
|
|
// checked or set if not defined.
|
|
|
|
if err := opts.ModifyValidity(cert); err != nil {
|
|
|
|
return nil, errs.Wrap(http.StatusBadRequest, err, "authority.SignSSH")
|
2019-08-01 00:46:28 +00:00
|
|
|
}
|
|
|
|
|
2020-08-04 01:10:29 +00:00
|
|
|
// Use provisioner modifiers.
|
2019-08-01 00:46:28 +00:00
|
|
|
for _, m := range mods {
|
2020-07-31 01:44:52 +00:00
|
|
|
if err := m.Modify(cert, opts); err != nil {
|
2020-08-04 01:10:29 +00:00
|
|
|
return nil, errs.Wrap(http.StatusForbidden, err, "authority.SignSSH")
|
2019-08-01 00:46:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get signer from authority keys
|
|
|
|
var signer ssh.Signer
|
|
|
|
switch cert.CertType {
|
|
|
|
case ssh.UserCert:
|
|
|
|
signer, err = ssh.NewSignerFromSigner(signKey)
|
|
|
|
case ssh.HostCert:
|
|
|
|
signer, err = ssh.NewSignerFromSigner(signKey)
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unexpected ssh certificate type: %d", cert.CertType)
|
|
|
|
}
|
2019-08-05 23:14:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-08-01 00:46:28 +00:00
|
|
|
|
2020-08-04 01:10:29 +00:00
|
|
|
// Sign certificate.
|
|
|
|
cert, err = sshutil.CreateCertificate(cert, signer)
|
2019-08-01 00:46:28 +00:00
|
|
|
if err != nil {
|
2020-08-04 01:10:29 +00:00
|
|
|
return nil, errs.Wrap(http.StatusInternalServerError, err, "authority.SignSSH: error signing certificate")
|
2019-08-01 00:46:28 +00:00
|
|
|
}
|
|
|
|
|
2020-08-04 01:10:29 +00:00
|
|
|
// User provisioners validators.
|
2019-08-01 00:46:28 +00:00
|
|
|
for _, v := range validators {
|
2020-01-24 21:42:00 +00:00
|
|
|
if err := v.Valid(cert, opts); err != nil {
|
2020-08-04 01:10:29 +00:00
|
|
|
return nil, errs.Wrap(http.StatusForbidden, err, "authority.SignSSH")
|
2019-08-01 00:46:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cert, nil
|
|
|
|
}
|