
* outpost: promote session end signal to non-provider specific Signed-off-by: Jens Langhammer <jens@goauthentik.io> * implement server-side logout in ldap Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix previous import Signed-off-by: Jens Langhammer <jens@goauthentik.io> * use better retry logic Signed-off-by: Jens Langhammer <jens@goauthentik.io> * log Signed-off-by: Jens Langhammer <jens@goauthentik.io> * make more generic if we switch from ws to something else Signed-off-by: Jens Langhammer <jens@goauthentik.io> * make it possible to e2e test WS Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix ldap session id Signed-off-by: Jens Langhammer <jens@goauthentik.io> * ok I actually need to go to bed this took me an hour to fix Signed-off-by: Jens Langhammer <jens@goauthentik.io> * format; add ldap test Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix leftover state Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove thread Signed-off-by: Jens Langhammer <jens@goauthentik.io> * use ws base for radius Signed-off-by: Jens Langhammer <jens@goauthentik.io> * separate test utils Signed-off-by: Jens Langhammer <jens@goauthentik.io> * rename Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix missing super calls Signed-off-by: Jens Langhammer <jens@goauthentik.io> * websocket tests with browser 🎉 Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add proxy test for sign out Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix install_id issue with channels tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix proxy basic auth test Signed-off-by: Jens Langhammer <jens@goauthentik.io> * big code dedupe Signed-off-by: Jens Langhammer <jens@goauthentik.io> * allow passing go build args Signed-off-by: Jens Langhammer <jens@goauthentik.io> * improve waiting for outpost Signed-off-by: Jens Langhammer <jens@goauthentik.io> * rewrite ldap tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * ok actually fix the tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * undo a couple things that need more time to cook Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove unused lockfile-lint dependency since we use a shell script and SFE does not have a lockfile Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix session id for ldap Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix missing createTimestamp and modifyTimestamp ldap attributes closes #10474 Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
108 lines
3.6 KiB
Go
108 lines
3.6 KiB
Go
package direct
|
|
|
|
import (
|
|
"context"
|
|
|
|
"beryju.io/ldap"
|
|
"github.com/getsentry/sentry-go"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
log "github.com/sirupsen/logrus"
|
|
"goauthentik.io/internal/outpost/flow"
|
|
"goauthentik.io/internal/outpost/ldap/bind"
|
|
"goauthentik.io/internal/outpost/ldap/flags"
|
|
"goauthentik.io/internal/outpost/ldap/metrics"
|
|
)
|
|
|
|
func (db *DirectBinder) Bind(username string, req *bind.Request) (ldap.LDAPResultCode, error) {
|
|
fe := flow.NewFlowExecutor(req.Context(), db.si.GetAuthenticationFlowSlug(), db.si.GetAPIClient().GetConfig(), log.Fields{
|
|
"bindDN": req.BindDN,
|
|
"client": req.RemoteAddr(),
|
|
"requestId": req.ID(),
|
|
})
|
|
fe.DelegateClientIP(req.RemoteAddr())
|
|
fe.Params.Add("goauthentik.io/outpost/ldap", "true")
|
|
|
|
fe.Answers[flow.StageIdentification] = username
|
|
fe.SetSecrets(req.BindPW, db.si.GetMFASupport())
|
|
|
|
passed, err := fe.Execute()
|
|
flags := flags.UserFlags{
|
|
Session: fe.SessionCookie(),
|
|
SessionJWT: fe.Session(),
|
|
UserPk: flags.InvalidUserPK,
|
|
}
|
|
// only set flags if we don't have flags for this DN yet
|
|
// as flags are only checked during the bind, we can remember whether a certain DN
|
|
// can search or not, as if they bind correctly first and then use incorrect credentials
|
|
// later, they won't get past this step anyways
|
|
if db.si.GetFlags(req.BindDN) == nil {
|
|
db.si.SetFlags(req.BindDN, &flags)
|
|
}
|
|
if err != nil {
|
|
metrics.RequestsRejected.With(prometheus.Labels{
|
|
"outpost_name": db.si.GetOutpostName(),
|
|
"type": "bind",
|
|
"reason": "flow_error",
|
|
"app": db.si.GetAppSlug(),
|
|
}).Inc()
|
|
req.Log().WithError(err).Warning("failed to execute flow")
|
|
return ldap.LDAPResultInvalidCredentials, nil
|
|
}
|
|
if !passed {
|
|
metrics.RequestsRejected.With(prometheus.Labels{
|
|
"outpost_name": db.si.GetOutpostName(),
|
|
"type": "bind",
|
|
"reason": "invalid_credentials",
|
|
"app": db.si.GetAppSlug(),
|
|
}).Inc()
|
|
req.Log().Info("Invalid credentials")
|
|
return ldap.LDAPResultInvalidCredentials, nil
|
|
}
|
|
|
|
access, _, err := fe.ApiClient().OutpostsApi.OutpostsLdapAccessCheck(
|
|
req.Context(), db.si.GetProviderID(),
|
|
).AppSlug(db.si.GetAppSlug()).Execute()
|
|
if !access.Access.Passing {
|
|
req.Log().Info("Access denied for user")
|
|
metrics.RequestsRejected.With(prometheus.Labels{
|
|
"outpost_name": db.si.GetOutpostName(),
|
|
"type": "bind",
|
|
"reason": "access_denied",
|
|
"app": db.si.GetAppSlug(),
|
|
}).Inc()
|
|
return ldap.LDAPResultInsufficientAccessRights, nil
|
|
}
|
|
if err != nil {
|
|
metrics.RequestsRejected.With(prometheus.Labels{
|
|
"outpost_name": db.si.GetOutpostName(),
|
|
"type": "bind",
|
|
"reason": "access_check_fail",
|
|
"app": db.si.GetAppSlug(),
|
|
}).Inc()
|
|
req.Log().WithError(err).Warning("failed to check access")
|
|
return ldap.LDAPResultOperationsError, nil
|
|
}
|
|
req.Log().Info("User has access")
|
|
uisp := sentry.StartSpan(req.Context(), "authentik.providers.ldap.bind.user_info")
|
|
// Get user info to store in context
|
|
userInfo, _, err := fe.ApiClient().CoreApi.CoreUsersMeRetrieve(context.Background()).Execute()
|
|
if err != nil {
|
|
metrics.RequestsRejected.With(prometheus.Labels{
|
|
"outpost_name": db.si.GetOutpostName(),
|
|
"type": "bind",
|
|
"reason": "user_info_fail",
|
|
"app": db.si.GetAppSlug(),
|
|
}).Inc()
|
|
req.Log().WithError(err).Warning("failed to get user info")
|
|
return ldap.LDAPResultOperationsError, nil
|
|
}
|
|
flags.UserPk = userInfo.User.Pk
|
|
flags.CanSearch = access.GetHasSearchPermission()
|
|
db.si.SetFlags(req.BindDN, &flags)
|
|
if flags.CanSearch {
|
|
req.Log().Debug("Allowed access to search")
|
|
}
|
|
uisp.Finish()
|
|
return ldap.LDAPResultSuccess, nil
|
|
}
|