2019-04-24 21:52:08 +00:00
|
|
|
package handlers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/authentication"
|
|
|
|
"github.com/authelia/authelia/internal/middlewares"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SecondFactorU2FSignPost handler for completing a signing request.
|
2020-02-01 12:54:50 +00:00
|
|
|
func SecondFactorU2FSignPost(u2fVerifier U2FVerifier) middlewares.RequestHandler {
|
|
|
|
return func(ctx *middlewares.AutheliaCtx) {
|
|
|
|
var requestBody signU2FRequestBody
|
|
|
|
err := ctx.ParseBody(&requestBody)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(err, mfaValidationFailedMessage)
|
|
|
|
return
|
|
|
|
}
|
2019-11-17 01:05:46 +00:00
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
userSession := ctx.GetSession()
|
|
|
|
if userSession.U2FChallenge == nil {
|
2020-05-05 21:27:38 +00:00
|
|
|
handleAuthenticationUnauthorized(ctx, fmt.Errorf("U2F signing has not been initiated yet (no challenge)"), mfaValidationFailedMessage)
|
2020-02-01 12:54:50 +00:00
|
|
|
return
|
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
if userSession.U2FRegistration == nil {
|
2020-05-05 21:27:38 +00:00
|
|
|
handleAuthenticationUnauthorized(ctx, fmt.Errorf("U2F signing has not been initiated yet (no registration)"), mfaValidationFailedMessage)
|
2020-02-01 12:54:50 +00:00
|
|
|
return
|
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
err = u2fVerifier.Verify(
|
|
|
|
userSession.U2FRegistration.KeyHandle,
|
|
|
|
userSession.U2FRegistration.PublicKey,
|
|
|
|
requestBody.SignResponse,
|
|
|
|
*userSession.U2FChallenge)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(err, mfaValidationFailedMessage)
|
|
|
|
return
|
|
|
|
}
|
2019-04-24 21:52:08 +00:00
|
|
|
|
2020-02-29 23:13:33 +00:00
|
|
|
err = ctx.Providers.SessionProvider.RegenerateSession(ctx.RequestCtx)
|
|
|
|
|
|
|
|
if err != nil {
|
2020-05-05 21:27:38 +00:00
|
|
|
handleAuthenticationUnauthorized(ctx, fmt.Errorf("Unable to regenerate session for user %s: %s", userSession.Username, err), mfaValidationFailedMessage)
|
2020-02-29 23:13:33 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-01 12:54:50 +00:00
|
|
|
userSession.AuthenticationLevel = authentication.TwoFactor
|
|
|
|
err = ctx.SaveSession(userSession)
|
2019-04-24 21:52:08 +00:00
|
|
|
|
|
|
|
if err != nil {
|
2020-05-05 21:27:38 +00:00
|
|
|
handleAuthenticationUnauthorized(ctx, fmt.Errorf("Unable to update authentication level with U2F: %s", err), mfaValidationFailedMessage)
|
2019-04-24 21:52:08 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-04 21:18:02 +00:00
|
|
|
Handle2FAResponse(ctx, requestBody.TargetURL)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
}
|