
* prepare client auth with inbuilt server Signed-off-by: Jens Langhammer <jens@goauthentik.io> * introduce better IPC auth Signed-off-by: Jens Langhammer <jens@goauthentik.io> * init Signed-off-by: Jens Langhammer <jens@goauthentik.io> * start stage Signed-off-by: Jens Langhammer <jens@goauthentik.io> * only allow trusted proxies to set MTLS headers Signed-off-by: Jens Langhammer <jens@goauthentik.io> * more stage progress Signed-off-by: Jens Langhammer <jens@goauthentik.io> * dont fail if ipc_key doesn't exist Signed-off-by: Jens Langhammer <jens@goauthentik.io> * actually install app Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add some tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * update API Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix unquote Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix int serial number not jsonable Signed-off-by: Jens Langhammer <jens@goauthentik.io> * init ui Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add UI Signed-off-by: Jens Langhammer <jens@goauthentik.io> * unrelated: fix git pull in makefile Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix parse helper Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add test for outpost Signed-off-by: Jens Langhammer <jens@goauthentik.io> * more tests and improvements Signed-off-by: Jens Langhammer <jens@goauthentik.io> * improve labels Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add support for multiple CAs on brand Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add support for multiple CAs to MTLS stage Signed-off-by: Jens Langhammer <jens@goauthentik.io> * dont log ipcuser secret views Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix go mod Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
106 lines
2.5 KiB
Go
106 lines
2.5 KiB
Go
package ak
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"encoding/pem"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
"goauthentik.io/api/v3"
|
|
)
|
|
|
|
type CryptoStore struct {
|
|
api *api.CryptoApiService
|
|
|
|
log *log.Entry
|
|
|
|
fingerprints map[string]string
|
|
certificates map[string]*tls.Certificate
|
|
}
|
|
|
|
func NewCryptoStore(cryptoApi *api.CryptoApiService) *CryptoStore {
|
|
return &CryptoStore{
|
|
api: cryptoApi,
|
|
log: log.WithField("logger", "authentik.outpost.cryptostore"),
|
|
fingerprints: make(map[string]string),
|
|
certificates: make(map[string]*tls.Certificate),
|
|
}
|
|
}
|
|
|
|
func (cs *CryptoStore) AddKeypair(uuid string) error {
|
|
// If they keypair was already added, don't
|
|
// do it again
|
|
if _, ok := cs.fingerprints[uuid]; ok {
|
|
return nil
|
|
}
|
|
// reset fingerprint to force update
|
|
cs.fingerprints[uuid] = ""
|
|
err := cs.Fetch(uuid)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (cs *CryptoStore) getFingerprint(uuid string) string {
|
|
kp, _, err := cs.api.CryptoCertificatekeypairsRetrieve(context.Background(), uuid).Execute()
|
|
if err != nil {
|
|
cs.log.WithField("uuid", uuid).WithError(err).Warning("Failed to fetch certificate's fingerprint")
|
|
return ""
|
|
}
|
|
return kp.GetFingerprintSha256()
|
|
}
|
|
|
|
func (cs *CryptoStore) Fetch(uuid string) error {
|
|
cfp := cs.getFingerprint(uuid)
|
|
if cfp == cs.fingerprints[uuid] {
|
|
cs.log.WithField("uuid", uuid).Debug("Fingerprint hasn't changed, not fetching cert")
|
|
return nil
|
|
}
|
|
cs.log.WithField("uuid", uuid).Info("Fetching certificate and private key")
|
|
|
|
cert, _, err := cs.api.CryptoCertificatekeypairsViewCertificateRetrieve(context.Background(), uuid).Execute()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
key, _, err := cs.api.CryptoCertificatekeypairsViewPrivateKeyRetrieve(context.Background(), uuid).Execute()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var tcert tls.Certificate
|
|
if key.Data != "" {
|
|
x509cert, err := tls.X509KeyPair([]byte(cert.Data), []byte(key.Data))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
tcert = x509cert
|
|
} else {
|
|
p, _ := pem.Decode([]byte(cert.Data))
|
|
x509cert, err := x509.ParseCertificate(p.Bytes)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
tcert = tls.Certificate{
|
|
Certificate: [][]byte{x509cert.Raw},
|
|
Leaf: x509cert,
|
|
}
|
|
}
|
|
cs.certificates[uuid] = &tcert
|
|
cs.fingerprints[uuid] = cfp
|
|
return nil
|
|
}
|
|
|
|
func (cs *CryptoStore) Get(uuid string) *tls.Certificate {
|
|
c, ok := cs.certificates[uuid]
|
|
if ok {
|
|
return c
|
|
}
|
|
err := cs.Fetch(uuid)
|
|
if err != nil {
|
|
cs.log.WithError(err).Warning("failed to fetch certificate")
|
|
}
|
|
return cs.certificates[uuid]
|
|
}
|