2021-07-17 19:24:11 +00:00
|
|
|
package outpost
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2021-07-19 11:17:13 +00:00
|
|
|
"net"
|
2021-07-17 19:24:11 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/cookiejar"
|
|
|
|
"net/url"
|
|
|
|
"strconv"
|
2021-07-19 11:17:13 +00:00
|
|
|
"strings"
|
2021-07-17 19:24:11 +00:00
|
|
|
|
2021-07-22 17:17:34 +00:00
|
|
|
"github.com/getsentry/sentry-go"
|
2021-09-09 13:52:24 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
"github.com/prometheus/client_golang/prometheus/promauto"
|
2021-07-17 19:24:11 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"goauthentik.io/api"
|
|
|
|
"goauthentik.io/internal/constants"
|
|
|
|
"goauthentik.io/internal/outpost/ak"
|
2021-09-05 17:47:30 +00:00
|
|
|
"goauthentik.io/internal/utils"
|
2021-07-17 19:24:11 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type StageComponent string
|
|
|
|
|
2021-09-09 13:52:24 +00:00
|
|
|
var (
|
|
|
|
FlowTimingGet = promauto.NewHistogramVec(prometheus.HistogramOpts{
|
|
|
|
Name: "authentik_outpost_flow_timing_get",
|
|
|
|
Help: "Duration it took to get a challenge",
|
|
|
|
}, []string{"stage", "flow", "client", "user"})
|
|
|
|
FlowTimingPost = promauto.NewHistogramVec(prometheus.HistogramOpts{
|
|
|
|
Name: "authentik_outpost_flow_timing_post",
|
|
|
|
Help: "Duration it took to send a challenge",
|
|
|
|
}, []string{"stage", "flow", "client", "user"})
|
|
|
|
)
|
|
|
|
|
2021-07-17 19:24:11 +00:00
|
|
|
const (
|
|
|
|
StageIdentification = StageComponent("ak-stage-identification")
|
|
|
|
StagePassword = StageComponent("ak-stage-password")
|
|
|
|
StageAuthenticatorValidate = StageComponent("ak-stage-authenticator-validate")
|
|
|
|
StageAccessDenied = StageComponent("ak-stage-access-denied")
|
|
|
|
)
|
|
|
|
|
2021-07-19 11:17:13 +00:00
|
|
|
const (
|
|
|
|
HeaderAuthentikRemoteIP = "X-authentik-remote-ip"
|
|
|
|
HeaderAuthentikOutpostToken = "X-authentik-outpost-token"
|
|
|
|
)
|
|
|
|
|
2021-07-17 19:24:11 +00:00
|
|
|
type FlowExecutor struct {
|
|
|
|
Params url.Values
|
|
|
|
Answers map[StageComponent]string
|
2021-07-22 17:17:34 +00:00
|
|
|
Context context.Context
|
2021-07-17 19:24:11 +00:00
|
|
|
|
2021-09-09 13:52:24 +00:00
|
|
|
cip string
|
2021-07-17 19:24:11 +00:00
|
|
|
api *api.APIClient
|
|
|
|
flowSlug string
|
|
|
|
log *log.Entry
|
2021-07-19 11:17:13 +00:00
|
|
|
token string
|
2021-07-22 17:17:34 +00:00
|
|
|
|
|
|
|
sp *sentry.Span
|
2021-07-17 19:24:11 +00:00
|
|
|
}
|
|
|
|
|
2021-07-22 17:17:34 +00:00
|
|
|
func NewFlowExecutor(ctx context.Context, flowSlug string, refConfig *api.Configuration, logFields log.Fields) *FlowExecutor {
|
|
|
|
rsp := sentry.StartSpan(ctx, "authentik.outposts.flow_executor")
|
|
|
|
|
2021-07-19 11:41:29 +00:00
|
|
|
l := log.WithField("flow", flowSlug).WithFields(logFields)
|
2021-07-17 19:24:11 +00:00
|
|
|
jar, err := cookiejar.New(nil)
|
|
|
|
if err != nil {
|
|
|
|
l.WithError(err).Warning("Failed to create cookiejar")
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
// Create new http client that also sets the correct ip
|
|
|
|
config := api.NewConfiguration()
|
|
|
|
config.Host = refConfig.Host
|
|
|
|
config.Scheme = refConfig.Scheme
|
|
|
|
config.HTTPClient = &http.Client{
|
|
|
|
Jar: jar,
|
2021-09-08 18:04:56 +00:00
|
|
|
Transport: ak.NewUserAgentTransport(constants.OutpostUserAgent(), ak.NewTracingTransport(ctx, ak.GetTLSTransport())),
|
2021-07-17 19:24:11 +00:00
|
|
|
}
|
2021-09-05 17:47:30 +00:00
|
|
|
token := strings.Split(refConfig.DefaultHeader["Authorization"], " ")[1]
|
|
|
|
config.AddDefaultHeader(HeaderAuthentikOutpostToken, token)
|
2021-07-17 19:24:11 +00:00
|
|
|
apiClient := api.NewAPIClient(config)
|
|
|
|
return &FlowExecutor{
|
|
|
|
Params: url.Values{},
|
|
|
|
Answers: make(map[StageComponent]string),
|
2021-07-22 17:17:34 +00:00
|
|
|
Context: rsp.Context(),
|
2021-07-17 19:24:11 +00:00
|
|
|
api: apiClient,
|
|
|
|
flowSlug: flowSlug,
|
|
|
|
log: l,
|
2021-09-05 17:47:30 +00:00
|
|
|
token: token,
|
2021-07-22 17:17:34 +00:00
|
|
|
sp: rsp,
|
2021-09-09 13:52:24 +00:00
|
|
|
cip: "",
|
2021-07-17 19:24:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fe *FlowExecutor) ApiClient() *api.APIClient {
|
|
|
|
return fe.api
|
|
|
|
}
|
|
|
|
|
|
|
|
type ChallengeInt interface {
|
|
|
|
GetComponent() string
|
|
|
|
GetType() api.ChallengeChoices
|
|
|
|
GetResponseErrors() map[string][]api.ErrorDetail
|
|
|
|
}
|
|
|
|
|
2021-07-19 11:17:13 +00:00
|
|
|
func (fe *FlowExecutor) DelegateClientIP(a net.Addr) {
|
2021-09-09 13:52:24 +00:00
|
|
|
fe.cip = utils.GetIP(a)
|
|
|
|
fe.api.GetConfig().AddDefaultHeader(HeaderAuthentikRemoteIP, fe.cip)
|
2021-07-19 11:17:13 +00:00
|
|
|
}
|
|
|
|
|
2021-07-17 19:24:11 +00:00
|
|
|
func (fe *FlowExecutor) CheckApplicationAccess(appSlug string) (bool, error) {
|
2021-07-22 17:17:34 +00:00
|
|
|
acsp := sentry.StartSpan(fe.Context, "authentik.outposts.flow_executor.check_access")
|
|
|
|
defer acsp.Finish()
|
2021-07-22 18:38:30 +00:00
|
|
|
p, _, err := fe.api.CoreApi.CoreApplicationsCheckAccessRetrieve(acsp.Context(), appSlug).Execute()
|
2021-07-17 19:24:11 +00:00
|
|
|
if !p.Passing {
|
|
|
|
fe.log.Info("Access denied for user")
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return false, fmt.Errorf("failed to check access: %w", err)
|
|
|
|
}
|
2021-07-19 11:41:29 +00:00
|
|
|
fe.log.Debug("User has access")
|
2021-07-17 19:24:11 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fe *FlowExecutor) getAnswer(stage StageComponent) string {
|
|
|
|
if v, o := fe.Answers[stage]; o {
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-08-21 14:17:30 +00:00
|
|
|
// WarmUp Ensure authentik's flow cache is warmed up
|
|
|
|
func (fe *FlowExecutor) WarmUp() error {
|
|
|
|
defer fe.sp.Finish()
|
|
|
|
gcsp := sentry.StartSpan(fe.Context, "authentik.outposts.flow_executor.get_challenge")
|
|
|
|
req := fe.api.FlowsApi.FlowsExecutorGet(gcsp.Context(), fe.flowSlug).Query(fe.Params.Encode())
|
|
|
|
_, _, err := req.Execute()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-07-17 19:24:11 +00:00
|
|
|
func (fe *FlowExecutor) Execute() (bool, error) {
|
|
|
|
return fe.solveFlowChallenge(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (fe *FlowExecutor) solveFlowChallenge(depth int) (bool, error) {
|
2021-07-22 17:17:34 +00:00
|
|
|
defer fe.sp.Finish()
|
|
|
|
|
2021-07-22 18:38:30 +00:00
|
|
|
// Get challenge
|
2021-07-22 17:17:34 +00:00
|
|
|
gcsp := sentry.StartSpan(fe.Context, "authentik.outposts.flow_executor.get_challenge")
|
2021-07-22 18:38:30 +00:00
|
|
|
req := fe.api.FlowsApi.FlowsExecutorGet(gcsp.Context(), fe.flowSlug).Query(fe.Params.Encode())
|
2021-07-17 19:24:11 +00:00
|
|
|
challenge, _, err := req.Execute()
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.New("failed to get challenge")
|
|
|
|
}
|
|
|
|
ch := challenge.GetActualInstance().(ChallengeInt)
|
|
|
|
fe.log.WithField("component", ch.GetComponent()).WithField("type", ch.GetType()).Debug("Got challenge")
|
2021-07-22 17:17:34 +00:00
|
|
|
gcsp.SetTag("ak_challenge", string(ch.GetType()))
|
|
|
|
gcsp.SetTag("ak_component", ch.GetComponent())
|
|
|
|
gcsp.Finish()
|
2021-09-09 13:52:24 +00:00
|
|
|
FlowTimingGet.With(prometheus.Labels{
|
|
|
|
"stage": ch.GetComponent(),
|
|
|
|
"flow": fe.flowSlug,
|
|
|
|
"client": fe.cip,
|
|
|
|
"user": fe.Answers[StageIdentification],
|
|
|
|
}).Observe(float64(gcsp.EndTime.Sub(gcsp.StartTime)))
|
2021-07-22 17:17:34 +00:00
|
|
|
|
2021-07-22 18:38:30 +00:00
|
|
|
// Resole challenge
|
|
|
|
scsp := sentry.StartSpan(fe.Context, "authentik.outposts.flow_executor.solve_challenge")
|
|
|
|
responseReq := fe.api.FlowsApi.FlowsExecutorSolve(scsp.Context(), fe.flowSlug).Query(fe.Params.Encode())
|
2021-07-17 19:24:11 +00:00
|
|
|
switch ch.GetComponent() {
|
|
|
|
case string(StageIdentification):
|
2021-08-26 19:14:19 +00:00
|
|
|
r := api.NewIdentificationChallengeResponseRequest(fe.getAnswer(StageIdentification))
|
|
|
|
r.SetPassword(fe.getAnswer(StagePassword))
|
|
|
|
responseReq = responseReq.FlowChallengeResponseRequest(api.IdentificationChallengeResponseRequestAsFlowChallengeResponseRequest(r))
|
2021-07-17 19:24:11 +00:00
|
|
|
case string(StagePassword):
|
|
|
|
responseReq = responseReq.FlowChallengeResponseRequest(api.PasswordChallengeResponseRequestAsFlowChallengeResponseRequest(api.NewPasswordChallengeResponseRequest(fe.getAnswer(StagePassword))))
|
|
|
|
case string(StageAuthenticatorValidate):
|
|
|
|
// We only support duo as authenticator, check if that's allowed
|
|
|
|
var deviceChallenge *api.DeviceChallenge
|
|
|
|
for _, devCh := range challenge.AuthenticatorValidationChallenge.DeviceChallenges {
|
|
|
|
if devCh.DeviceClass == string(api.DEVICECLASSESENUM_DUO) {
|
|
|
|
deviceChallenge = &devCh
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if deviceChallenge == nil {
|
|
|
|
return false, errors.New("got ak-stage-authenticator-validate without duo")
|
|
|
|
}
|
|
|
|
devId, err := strconv.Atoi(deviceChallenge.DeviceUid)
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.New("failed to convert duo device id to int")
|
|
|
|
}
|
|
|
|
devId32 := int32(devId)
|
|
|
|
inner := api.NewAuthenticatorValidationChallengeResponseRequest()
|
|
|
|
inner.Duo = &devId32
|
|
|
|
responseReq = responseReq.FlowChallengeResponseRequest(api.AuthenticatorValidationChallengeResponseRequestAsFlowChallengeResponseRequest(inner))
|
|
|
|
case string(StageAccessDenied):
|
|
|
|
return false, errors.New("got ak-stage-access-denied")
|
|
|
|
default:
|
|
|
|
return false, fmt.Errorf("unsupported challenge type %s", ch.GetComponent())
|
|
|
|
}
|
2021-07-22 17:17:34 +00:00
|
|
|
|
2021-07-17 19:24:11 +00:00
|
|
|
response, _, err := responseReq.Execute()
|
|
|
|
ch = response.GetActualInstance().(ChallengeInt)
|
|
|
|
fe.log.WithField("component", ch.GetComponent()).WithField("type", ch.GetType()).Debug("Got response")
|
2021-07-22 17:17:34 +00:00
|
|
|
scsp.SetTag("ak_challenge", string(ch.GetType()))
|
|
|
|
scsp.SetTag("ak_component", ch.GetComponent())
|
|
|
|
scsp.Finish()
|
|
|
|
|
2021-07-17 19:24:11 +00:00
|
|
|
switch ch.GetComponent() {
|
|
|
|
case string(StageAccessDenied):
|
|
|
|
return false, errors.New("got ak-stage-access-denied")
|
|
|
|
}
|
|
|
|
if ch.GetType() == "redirect" {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return false, fmt.Errorf("failed to submit challenge %w", err)
|
|
|
|
}
|
|
|
|
if len(ch.GetResponseErrors()) > 0 {
|
|
|
|
for key, errs := range ch.GetResponseErrors() {
|
|
|
|
for _, err := range errs {
|
|
|
|
return false, fmt.Errorf("flow error %s: %s", key, err.String)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-09 13:52:24 +00:00
|
|
|
FlowTimingPost.With(prometheus.Labels{
|
|
|
|
"stage": ch.GetComponent(),
|
|
|
|
"flow": fe.flowSlug,
|
|
|
|
"client": fe.cip,
|
|
|
|
"user": fe.Answers[StageIdentification],
|
|
|
|
}).Observe(float64(scsp.EndTime.Sub(scsp.StartTime)))
|
|
|
|
|
2021-07-17 19:24:11 +00:00
|
|
|
if depth >= 10 {
|
|
|
|
return false, errors.New("exceeded stage recursion depth")
|
|
|
|
}
|
|
|
|
return fe.solveFlowChallenge(depth + 1)
|
|
|
|
}
|