2019-04-24 21:52:08 +00:00
package handlers
import (
"encoding/base64"
"fmt"
"net"
"net/url"
"strings"
2020-04-05 12:37:21 +00:00
"github.com/valyala/fasthttp"
2019-12-24 02:14:52 +00:00
"github.com/authelia/authelia/internal/authentication"
"github.com/authelia/authelia/internal/authorization"
"github.com/authelia/authelia/internal/middlewares"
2019-04-24 21:52:08 +00:00
)
2020-02-18 22:39:07 +00:00
func isURLUnderProtectedDomain ( url * url . URL , domain string ) bool {
return strings . HasSuffix ( url . Hostname ( ) , domain )
}
func isSchemeHTTPS ( url * url . URL ) bool {
return url . Scheme == "https"
}
2020-02-27 23:28:53 +00:00
func isSchemeWSS ( url * url . URL ) bool {
return url . Scheme == "wss"
}
2020-05-02 05:06:39 +00:00
// getOriginalURL extract the URL from the request headers (X-Original-URI or X-Forwarded-* headers).
2019-04-24 21:52:08 +00:00
func getOriginalURL ( ctx * middlewares . AutheliaCtx ) ( * url . URL , error ) {
originalURL := ctx . XOriginalURL ( )
if originalURL != nil {
url , err := url . ParseRequestURI ( string ( originalURL ) )
if err != nil {
2020-02-06 02:24:25 +00:00
return nil , fmt . Errorf ( "Unable to parse URL extracted from X-Original-URL header: %v" , err )
2019-04-24 21:52:08 +00:00
}
2020-03-22 22:12:24 +00:00
ctx . Logger . Debug ( "Using X-Original-URL header content as targeted site URL" )
2019-04-24 21:52:08 +00:00
return url , nil
}
forwardedProto := ctx . XForwardedProto ( )
forwardedHost := ctx . XForwardedHost ( )
forwardedURI := ctx . XForwardedURI ( )
2020-02-06 02:24:25 +00:00
if forwardedProto == nil {
return nil , errMissingXForwardedProto
2019-04-24 21:52:08 +00:00
}
2020-02-06 02:24:25 +00:00
if forwardedHost == nil {
return nil , errMissingXForwardedHost
2019-04-24 21:52:08 +00:00
}
2020-02-06 02:24:25 +00:00
var requestURI string
scheme := append ( forwardedProto , protoHostSeparator ... )
2019-04-24 21:52:08 +00:00
requestURI = string ( append ( scheme ,
append ( forwardedHost , forwardedURI ... ) ... ) )
2020-02-06 02:24:25 +00:00
url , err := url . ParseRequestURI ( requestURI )
2019-04-24 21:52:08 +00:00
if err != nil {
2020-02-06 02:24:25 +00:00
return nil , fmt . Errorf ( "Unable to parse URL %s: %v" , requestURI , err )
2019-04-24 21:52:08 +00:00
}
2020-03-22 22:12:24 +00:00
ctx . Logger . Debugf ( "Using X-Fowarded-Proto, X-Forwarded-Host and X-Forwarded-URI headers " +
"to construct targeted site URL" )
2019-04-24 21:52:08 +00:00
return url , nil
}
2020-05-02 05:06:39 +00:00
// parseBasicAuth parses an HTTP Basic Authentication string.
// "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==" returns ("Aladdin", "open sesame", true).
2019-04-24 21:52:08 +00:00
func parseBasicAuth ( auth string ) ( username , password string , err error ) {
if ! strings . HasPrefix ( auth , authPrefix ) {
2020-02-06 02:24:25 +00:00
return "" , "" , fmt . Errorf ( "%s prefix not found in %s header" , strings . Trim ( authPrefix , " " ) , AuthorizationHeader )
2019-04-24 21:52:08 +00:00
}
c , err := base64 . StdEncoding . DecodeString ( auth [ len ( authPrefix ) : ] )
if err != nil {
return "" , "" , err
}
cs := string ( c )
s := strings . IndexByte ( cs , ':' )
if s < 0 {
2020-02-06 02:24:25 +00:00
return "" , "" , fmt . Errorf ( "Format of %s header must be user:password" , AuthorizationHeader )
2019-04-24 21:52:08 +00:00
}
return cs [ : s ] , cs [ s + 1 : ] , nil
}
2020-05-02 05:06:39 +00:00
// isTargetURLAuthorized check whether the given user is authorized to access the resource.
2019-04-24 21:52:08 +00:00
func isTargetURLAuthorized ( authorizer * authorization . Authorizer , targetURL url . URL ,
username string , userGroups [ ] string , clientIP net . IP , authLevel authentication . Level ) authorizationMatching {
level := authorizer . GetRequiredLevel ( authorization . Subject {
Username : username ,
Groups : userGroups ,
IP : clientIP ,
} , targetURL )
if level == authorization . Bypass {
return Authorized
} else if username != "" && level == authorization . Denied {
// If the user is not anonymous, it means that we went through
// all the rules related to that user and knowing who he is we can
2020-04-09 01:05:17 +00:00
// deduce the access is forbidden
2019-04-24 21:52:08 +00:00
// For anonymous users though, we cannot be sure that she
// could not be granted the rights to access the resource. Consequently
2020-04-09 01:05:17 +00:00
// for anonymous users we send Unauthorized instead of Forbidden
2019-04-24 21:52:08 +00:00
return Forbidden
} else {
if level == authorization . OneFactor &&
authLevel >= authentication . OneFactor {
return Authorized
} else if level == authorization . TwoFactor &&
authLevel >= authentication . TwoFactor {
return Authorized
}
}
return NotAuthorized
}
// verifyBasicAuth verify that the provided username and password are correct and
2020-05-02 05:06:39 +00:00
// that the user is authorized to target the resource.
2020-04-09 01:05:17 +00:00
func verifyBasicAuth ( auth [ ] byte , targetURL url . URL , ctx * middlewares . AutheliaCtx ) ( username string , groups [ ] string , authLevel authentication . Level , err error ) { //nolint:unparam
2019-04-24 21:52:08 +00:00
username , password , err := parseBasicAuth ( string ( auth ) )
if err != nil {
2020-02-06 02:24:25 +00:00
return "" , nil , authentication . NotAuthenticated , fmt . Errorf ( "Unable to parse content of %s header: %s" , AuthorizationHeader , err )
2019-04-24 21:52:08 +00:00
}
authenticated , err := ctx . Providers . UserProvider . CheckUserPassword ( username , password )
if err != nil {
2020-02-06 02:24:25 +00:00
return "" , nil , authentication . NotAuthenticated , fmt . Errorf ( "Unable to check credentials extracted from %s header: %s" , AuthorizationHeader , err )
2019-04-24 21:52:08 +00:00
}
2020-05-02 05:06:39 +00:00
// If the user is not correctly authenticated, send a 401.
2019-04-24 21:52:08 +00:00
if ! authenticated {
// Request Basic Authentication otherwise
return "" , nil , authentication . NotAuthenticated , fmt . Errorf ( "User %s is not authenticated" , username )
}
details , err := ctx . Providers . UserProvider . GetDetails ( username )
if err != nil {
2020-02-06 02:24:25 +00:00
return "" , nil , authentication . NotAuthenticated , fmt . Errorf ( "Unable to retrieve details of user %s: %s" , username , err )
2019-04-24 21:52:08 +00:00
}
return username , details . Groups , authentication . OneFactor , nil
}
2020-05-02 05:06:39 +00:00
// setForwardedHeaders set the forwarded User and Groups headers.
2019-04-24 21:52:08 +00:00
func setForwardedHeaders ( headers * fasthttp . ResponseHeader , username string , groups [ ] string ) {
if username != "" {
headers . Set ( remoteUserHeader , username )
headers . Set ( remoteGroupsHeader , strings . Join ( groups , "," ) )
}
}
2020-05-02 05:06:39 +00:00
// hasUserBeenInactiveLongEnough check whether the user has been inactive for too long.
2020-04-09 01:05:17 +00:00
func hasUserBeenInactiveLongEnough ( ctx * middlewares . AutheliaCtx ) ( bool , error ) { //nolint:unparam
2020-04-05 12:37:21 +00:00
maxInactivityPeriod := int64 ( ctx . Providers . SessionProvider . Inactivity . Seconds ( ) )
2019-04-24 21:52:08 +00:00
if maxInactivityPeriod == 0 {
return false , nil
}
lastActivity := ctx . GetSession ( ) . LastActivity
2020-01-17 22:48:48 +00:00
inactivityPeriod := ctx . Clock . Now ( ) . Unix ( ) - lastActivity
2019-04-24 21:52:08 +00:00
2019-11-16 19:50:58 +00:00
ctx . Logger . Tracef ( "Inactivity report: Inactivity=%d, MaxInactivity=%d" ,
2019-04-24 21:52:08 +00:00
inactivityPeriod , maxInactivityPeriod )
if inactivityPeriod > maxInactivityPeriod {
return true , nil
}
return false , nil
}
2020-05-02 05:06:39 +00:00
// verifyFromSessionCookie verify if a user identified by a cookie is allowed to access target URL.
2020-04-09 01:05:17 +00:00
func verifyFromSessionCookie ( targetURL url . URL , ctx * middlewares . AutheliaCtx ) ( username string , groups [ ] string , authLevel authentication . Level , err error ) { //nolint:unparam
2019-04-24 21:52:08 +00:00
userSession := ctx . GetSession ( )
2020-05-02 05:06:39 +00:00
// No username in the session means the user is anonymous.
2019-04-24 21:52:08 +00:00
isUserAnonymous := userSession . Username == ""
if isUserAnonymous && userSession . AuthenticationLevel != authentication . NotAuthenticated {
return "" , nil , authentication . NotAuthenticated , fmt . Errorf ( "An anonymous user cannot be authenticated. That might be the sign of a compromise" )
}
2020-01-17 22:48:48 +00:00
if ! userSession . KeepMeLoggedIn && ! isUserAnonymous {
2019-04-24 21:52:08 +00:00
inactiveLongEnough , err := hasUserBeenInactiveLongEnough ( ctx )
if err != nil {
return "" , nil , authentication . NotAuthenticated , fmt . Errorf ( "Unable to check if user has been inactive for a long time: %s" , err )
}
if inactiveLongEnough {
2020-05-02 05:06:39 +00:00
// Destroy the session a new one will be regenerated on next request.
2019-04-24 21:52:08 +00:00
err := ctx . Providers . SessionProvider . DestroySession ( ctx . RequestCtx )
if err != nil {
return "" , nil , authentication . NotAuthenticated , fmt . Errorf ( "Unable to destroy user session after long inactivity: %s" , err )
}
2020-04-24 23:29:36 +00:00
return userSession . Username , userSession . Groups , authentication . NotAuthenticated , fmt . Errorf ( "User %s has been inactive for too long" , userSession . Username )
2019-04-24 21:52:08 +00:00
}
}
return userSession . Username , userSession . Groups , userSession . AuthenticationLevel , nil
}
2020-04-24 23:29:36 +00:00
func handleUnauthorized ( ctx * middlewares . AutheliaCtx , targetURL fmt . Stringer , username string ) {
// Kubernetes ingress controller and Traefik use the rd parameter of the verify
// endpoint to provide the URL of the login portal. The target URL of the user
2020-05-02 05:06:39 +00:00
// is computed from X-Fowarded-* headers or X-Original-URL.
2020-04-24 23:29:36 +00:00
rd := string ( ctx . QueryArgs ( ) . Peek ( "rd" ) )
if rd != "" {
redirectionURL := fmt . Sprintf ( "%s?rd=%s" , rd , url . QueryEscape ( targetURL . String ( ) ) )
if strings . Contains ( redirectionURL , "/%23/" ) {
ctx . Logger . Warn ( "Characters /%23/ have been detected in redirection URL. This is not needed anymore, please strip it" )
}
ctx . Logger . Infof ( "Access to %s is not authorized to user %s, redirecting to %s" , targetURL . String ( ) , username , redirectionURL )
ctx . Redirect ( redirectionURL , 302 )
ctx . SetBodyString ( fmt . Sprintf ( "Found. Redirecting to %s" , redirectionURL ) )
} else {
ctx . Logger . Infof ( "Access to %s is not authorized to user %s, sending 401 response" , targetURL . String ( ) , username )
ctx . ReplyUnauthorized ( )
}
}
func updateActivityTimestamp ( ctx * middlewares . AutheliaCtx , isBasicAuth bool , username string ) error {
if isBasicAuth || username == "" {
return nil
}
userSession := ctx . GetSession ( )
// We don't need to update the activity timestamp when user checked keep me logged in.
if userSession . KeepMeLoggedIn {
return nil
}
2020-05-02 05:06:39 +00:00
// Mark current activity.
2020-04-24 23:29:36 +00:00
userSession . LastActivity = ctx . Clock . Now ( ) . Unix ( )
return ctx . SaveSession ( userSession )
}
2020-05-02 05:06:39 +00:00
// VerifyGet is the handler verifying if a request is allowed to go through.
2019-04-24 21:52:08 +00:00
func VerifyGet ( ctx * middlewares . AutheliaCtx ) {
ctx . Logger . Tracef ( "Headers=%s" , ctx . Request . Header . String ( ) )
targetURL , err := getOriginalURL ( ctx )
if err != nil {
ctx . Error ( fmt . Errorf ( "Unable to parse target URL: %s" , err ) , operationFailedMessage )
return
}
2020-02-27 23:28:53 +00:00
if ! isSchemeHTTPS ( targetURL ) && ! isSchemeWSS ( targetURL ) {
ctx . Logger . Error ( fmt . Errorf ( "Scheme of target URL %s must be secure since cookies are " +
2020-02-18 22:39:07 +00:00
"only transported over a secure connection for security reasons" , targetURL . String ( ) ) )
ctx . ReplyUnauthorized ( )
return
}
if ! isURLUnderProtectedDomain ( targetURL , ctx . Configuration . Session . Domain ) {
ctx . Logger . Error ( fmt . Errorf ( "The target URL %s is not under the protected domain %s" ,
targetURL . String ( ) , ctx . Configuration . Session . Domain ) )
ctx . ReplyUnauthorized ( )
return
}
2019-04-24 21:52:08 +00:00
var username string
var groups [ ] string
var authLevel authentication . Level
2020-02-06 02:24:25 +00:00
proxyAuthorization := ctx . Request . Header . Peek ( AuthorizationHeader )
2020-04-24 23:29:36 +00:00
isBasicAuth := proxyAuthorization != nil
2019-04-24 21:52:08 +00:00
2020-04-24 23:29:36 +00:00
if isBasicAuth {
2019-04-24 21:52:08 +00:00
username , groups , authLevel , err = verifyBasicAuth ( proxyAuthorization , * targetURL , ctx )
} else {
username , groups , authLevel , err = verifyFromSessionCookie ( * targetURL , ctx )
}
if err != nil {
ctx . Logger . Error ( fmt . Sprintf ( "Error caught when verifying user authorization: %s" , err ) )
2020-04-24 23:29:36 +00:00
if err := updateActivityTimestamp ( ctx , isBasicAuth , username ) ; err != nil {
ctx . Error ( fmt . Errorf ( "Unable to update last activity: %s" , err ) , operationFailedMessage )
return
}
handleUnauthorized ( ctx , targetURL , username )
2019-04-24 21:52:08 +00:00
return
}
authorization := isTargetURLAuthorized ( ctx . Providers . Authorizer , * targetURL , username ,
groups , ctx . RemoteIP ( ) , authLevel )
if authorization == Forbidden {
2020-04-24 23:29:36 +00:00
ctx . Logger . Infof ( "Access to %s is forbidden to user %s" , targetURL . String ( ) , username )
2019-04-24 21:52:08 +00:00
ctx . ReplyForbidden ( )
} else if authorization == NotAuthorized {
2020-04-24 23:29:36 +00:00
handleUnauthorized ( ctx , targetURL , username )
2019-04-24 21:52:08 +00:00
} else if authorization == Authorized {
setForwardedHeaders ( & ctx . Response . Header , username , groups )
}
2020-04-24 23:29:36 +00:00
if err := updateActivityTimestamp ( ctx , isBasicAuth , username ) ; err != nil {
ctx . Error ( fmt . Errorf ( "Unable to update last activity: %s" , err ) , operationFailedMessage )
2019-04-24 21:52:08 +00:00
}
}