269 lines
7.1 KiB
Go
269 lines
7.1 KiB
Go
package model
|
|
|
|
import (
|
|
"database/sql"
|
|
"encoding/base64"
|
|
"encoding/hex"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/go-webauthn/webauthn/protocol"
|
|
"github.com/go-webauthn/webauthn/webauthn"
|
|
"github.com/google/uuid"
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
const (
|
|
attestationTypeFIDOU2F = "fido-u2f"
|
|
)
|
|
|
|
// WebauthnUser is an object to represent a user for the Webauthn lib.
|
|
type WebauthnUser struct {
|
|
Username string
|
|
DisplayName string
|
|
Devices []WebauthnDevice
|
|
}
|
|
|
|
// HasFIDOU2F returns true if the user has any attestation type `fido-u2f` devices.
|
|
func (w WebauthnUser) HasFIDOU2F() bool {
|
|
for _, c := range w.Devices {
|
|
if c.AttestationType == attestationTypeFIDOU2F {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// WebAuthnID implements the webauthn.User interface.
|
|
func (w WebauthnUser) WebAuthnID() []byte {
|
|
return []byte(w.Username)
|
|
}
|
|
|
|
// WebAuthnName implements the webauthn.User interface.
|
|
func (w WebauthnUser) WebAuthnName() string {
|
|
return w.Username
|
|
}
|
|
|
|
// WebAuthnDisplayName implements the webauthn.User interface.
|
|
func (w WebauthnUser) WebAuthnDisplayName() string {
|
|
return w.DisplayName
|
|
}
|
|
|
|
// WebAuthnIcon implements the webauthn.User interface.
|
|
func (w WebauthnUser) WebAuthnIcon() string {
|
|
return ""
|
|
}
|
|
|
|
// WebAuthnCredentials implements the webauthn.User interface.
|
|
func (w WebauthnUser) WebAuthnCredentials() (credentials []webauthn.Credential) {
|
|
credentials = make([]webauthn.Credential, len(w.Devices))
|
|
|
|
var credential webauthn.Credential
|
|
|
|
for i, device := range w.Devices {
|
|
aaguid, err := device.AAGUID.MarshalBinary()
|
|
if err != nil {
|
|
continue
|
|
}
|
|
|
|
credential = webauthn.Credential{
|
|
ID: device.KID.Bytes(),
|
|
PublicKey: device.PublicKey,
|
|
AttestationType: device.AttestationType,
|
|
Authenticator: webauthn.Authenticator{
|
|
AAGUID: aaguid,
|
|
SignCount: device.SignCount,
|
|
CloneWarning: device.CloneWarning,
|
|
},
|
|
}
|
|
|
|
transports := strings.Split(device.Transport, ",")
|
|
credential.Transport = []protocol.AuthenticatorTransport{}
|
|
|
|
for _, t := range transports {
|
|
if t == "" {
|
|
continue
|
|
}
|
|
|
|
credential.Transport = append(credential.Transport, protocol.AuthenticatorTransport(t))
|
|
}
|
|
|
|
credentials[i] = credential
|
|
}
|
|
|
|
return credentials
|
|
}
|
|
|
|
// WebAuthnCredentialDescriptors decodes the users credentials into protocol.CredentialDescriptor's.
|
|
func (w WebauthnUser) WebAuthnCredentialDescriptors() (descriptors []protocol.CredentialDescriptor) {
|
|
credentials := w.WebAuthnCredentials()
|
|
|
|
descriptors = make([]protocol.CredentialDescriptor, len(credentials))
|
|
|
|
for i, credential := range credentials {
|
|
descriptors[i] = credential.Descriptor()
|
|
}
|
|
|
|
return descriptors
|
|
}
|
|
|
|
// NewWebauthnDeviceFromCredential creates a WebauthnDevice from a webauthn.Credential.
|
|
func NewWebauthnDeviceFromCredential(rpid, username, description string, credential *webauthn.Credential) (device WebauthnDevice) {
|
|
transport := make([]string, len(credential.Transport))
|
|
|
|
for i, t := range credential.Transport {
|
|
transport[i] = string(t)
|
|
}
|
|
|
|
device = WebauthnDevice{
|
|
RPID: rpid,
|
|
Username: username,
|
|
CreatedAt: time.Now(),
|
|
Description: description,
|
|
KID: NewBase64(credential.ID),
|
|
PublicKey: credential.PublicKey,
|
|
AttestationType: credential.AttestationType,
|
|
SignCount: credential.Authenticator.SignCount,
|
|
CloneWarning: credential.Authenticator.CloneWarning,
|
|
Transport: strings.Join(transport, ","),
|
|
}
|
|
|
|
aaguid, err := uuid.Parse(hex.EncodeToString(credential.Authenticator.AAGUID))
|
|
if err == nil && aaguid.ID() != 0 {
|
|
device.AAGUID = uuid.NullUUID{Valid: true, UUID: aaguid}
|
|
}
|
|
|
|
return device
|
|
}
|
|
|
|
// WebauthnDevice represents a Webauthn Device in the database storage.
|
|
type WebauthnDevice struct {
|
|
ID int `db:"id"`
|
|
CreatedAt time.Time `db:"created_at"`
|
|
LastUsedAt sql.NullTime `db:"last_used_at"`
|
|
RPID string `db:"rpid"`
|
|
Username string `db:"username"`
|
|
Description string `db:"description"`
|
|
KID Base64 `db:"kid"`
|
|
PublicKey []byte `db:"public_key"`
|
|
AttestationType string `db:"attestation_type"`
|
|
Transport string `db:"transport"`
|
|
AAGUID uuid.NullUUID `db:"aaguid"`
|
|
SignCount uint32 `db:"sign_count"`
|
|
CloneWarning bool `db:"clone_warning"`
|
|
}
|
|
|
|
// UpdateSignInInfo adjusts the values of the WebauthnDevice after a sign in.
|
|
func (d *WebauthnDevice) UpdateSignInInfo(config *webauthn.Config, now time.Time, signCount uint32) {
|
|
d.LastUsedAt = sql.NullTime{Time: now, Valid: true}
|
|
|
|
d.SignCount = signCount
|
|
|
|
if d.RPID != "" {
|
|
return
|
|
}
|
|
|
|
switch d.AttestationType {
|
|
case attestationTypeFIDOU2F:
|
|
d.RPID = config.RPOrigin
|
|
default:
|
|
d.RPID = config.RPID
|
|
}
|
|
}
|
|
|
|
func (d *WebauthnDevice) LastUsed() *time.Time {
|
|
if d.LastUsedAt.Valid {
|
|
return &d.LastUsedAt.Time
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// MarshalYAML marshals this model into YAML.
|
|
func (d *WebauthnDevice) MarshalYAML() (any, error) {
|
|
o := WebauthnDeviceData{
|
|
CreatedAt: d.CreatedAt,
|
|
LastUsedAt: d.LastUsed(),
|
|
RPID: d.RPID,
|
|
Username: d.Username,
|
|
Description: d.Description,
|
|
KID: d.KID.String(),
|
|
PublicKey: base64.StdEncoding.EncodeToString(d.PublicKey),
|
|
AttestationType: d.AttestationType,
|
|
Transport: d.Transport,
|
|
AAGUID: d.AAGUID.UUID.String(),
|
|
SignCount: d.SignCount,
|
|
CloneWarning: d.CloneWarning,
|
|
}
|
|
|
|
return yaml.Marshal(o)
|
|
}
|
|
|
|
// UnmarshalYAML unmarshalls YAML into this model.
|
|
func (d *WebauthnDevice) UnmarshalYAML(value *yaml.Node) (err error) {
|
|
o := &WebauthnDeviceData{}
|
|
|
|
if err = value.Decode(o); err != nil {
|
|
return err
|
|
}
|
|
|
|
if d.PublicKey, err = base64.StdEncoding.DecodeString(o.PublicKey); err != nil {
|
|
return err
|
|
}
|
|
|
|
var aaguid uuid.UUID
|
|
|
|
if aaguid, err = uuid.Parse(o.AAGUID); err != nil {
|
|
return err
|
|
}
|
|
|
|
if aaguid.ID() != 0 {
|
|
d.AAGUID = uuid.NullUUID{Valid: true, UUID: aaguid}
|
|
}
|
|
|
|
var kid []byte
|
|
|
|
if kid, err = base64.StdEncoding.DecodeString(o.KID); err != nil {
|
|
return err
|
|
}
|
|
|
|
d.KID = NewBase64(kid)
|
|
|
|
d.CreatedAt = o.CreatedAt
|
|
d.RPID = o.RPID
|
|
d.Username = o.Username
|
|
d.Description = o.Description
|
|
d.AttestationType = o.AttestationType
|
|
d.Transport = o.Transport
|
|
d.SignCount = o.SignCount
|
|
d.CloneWarning = o.CloneWarning
|
|
|
|
if o.LastUsedAt != nil {
|
|
d.LastUsedAt = sql.NullTime{Valid: true, Time: *o.LastUsedAt}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// WebauthnDeviceData represents a Webauthn Device in the database storage.
|
|
type WebauthnDeviceData struct {
|
|
CreatedAt time.Time `yaml:"created_at"`
|
|
LastUsedAt *time.Time `yaml:"last_used_at"`
|
|
RPID string `yaml:"rpid"`
|
|
Username string `yaml:"username"`
|
|
Description string `yaml:"description"`
|
|
KID string `yaml:"kid"`
|
|
PublicKey string `yaml:"public_key"`
|
|
AttestationType string `yaml:"attestation_type"`
|
|
Transport string `yaml:"transport"`
|
|
AAGUID string `yaml:"aaguid"`
|
|
SignCount uint32 `yaml:"sign_count"`
|
|
CloneWarning bool `yaml:"clone_warning"`
|
|
}
|
|
|
|
// WebauthnDeviceExport represents a WebauthnDevice export file.
|
|
type WebauthnDeviceExport struct {
|
|
WebauthnDevices []WebauthnDevice `yaml:"webauthn_devices"`
|
|
}
|