Skip to content
Snippets Groups Projects
Select Git revision
  • master default
  • method_check
  • custom_prefix
  • package
  • cookies
  • v2.1.1
  • v2.1.0
  • v2.1.0-rc5
  • v2.1.0-rc4
  • v2.1.0-rc3
  • v2.1.0-rc2
  • v2.1.0-rc1
  • v2.0.7
  • v2.0.6
  • v2.0.5
  • v2.0.4
  • v2.0.3
  • v2.0.2
  • v2.0.1
  • v2.0.0
  • v1.2.8
  • v1.2.7
  • v1.2.6
  • v1.2.5
  • v1.2.4
25 results

middleware.go

Blame
  • middleware.go 14.11 KiB
    /*
    Copyright 2015 All rights reserved.
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package main
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"regexp"
    	"strings"
    	"time"
    
    	"github.com/gambol99/go-oidc/jose"
    
    	"github.com/PuerkitoBio/purell"
    	"github.com/go-chi/chi/middleware"
    	"github.com/prometheus/client_golang/prometheus"
    	"github.com/unrolled/secure"
    	"go.uber.org/zap"
    )
    
    const (
    	// normalizeFlags is the options to purell
    	normalizeFlags purell.NormalizationFlags = purell.FlagRemoveDotSegments | purell.FlagRemoveDuplicateSlashes
    )
    
    // entrypointMiddleware is custom filtering for incoming requests
    func entrypointMiddleware(next http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		keep := req.URL.Path
    		purell.NormalizeURL(req.URL, normalizeFlags)
    
    		// ensure we have a slash in the url
    		if !strings.HasPrefix(req.URL.Path, "/") {
    			req.URL.Path = "/" + req.URL.Path
    		}
    		req.RequestURI = req.URL.RawPath
    		req.URL.RawPath = req.URL.Path
    
    		// continue the flow
    		scope := &RequestScope{}
    		resp := middleware.NewWrapResponseWriter(w, 1)
    		next.ServeHTTP(resp, req.WithContext(context.WithValue(req.Context(), contextScopeName, scope)))
    
    		// place back the original uri for proxying request
    		req.URL.Path = keep
    		req.URL.RawPath = keep
    		req.RequestURI = keep
    	})
    }
    
    // loggingMiddleware is a custom http logger
    func (r *oauthProxy) loggingMiddleware(next http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		start := time.Now()
    		resp := w.(middleware.WrapResponseWriter)
    		next.ServeHTTP(resp, req)
    		addr := req.RemoteAddr
    		r.log.Info("client request",
    			zap.Duration("latency", time.Since(start)),
    			zap.Int("status", resp.Status()),
    			zap.Int("bytes", resp.BytesWritten()),
    			zap.String("client_ip", addr),
    			zap.String("method", req.Method),
    			zap.String("path", req.URL.Path))
    	})
    }
    
    // metricsMiddleware is responsible for collecting metrics
    func (r *oauthProxy) metricsMiddleware(next http.Handler) http.Handler {
    	r.log.Info("enabled the service metrics middleware, available on", zap.String("path", fmt.Sprintf("%s%s", oauthURL, metricsURL)))
    
    	statusMetrics := prometheus.NewCounterVec(
    		prometheus.CounterOpts{
    			Name: "http_request_total",
    			Help: "The HTTP requests partitioned by status code",
    		},
    		[]string{"code", "method"},
    	)
    	prometheus.MustRegister(statusMetrics)
    
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		resp := w.(middleware.WrapResponseWriter)
    		statusMetrics.WithLabelValues(fmt.Sprintf("%d", resp.Status()), req.Method).Inc()
    
    		next.ServeHTTP(w, req)
    	})
    }
    
    // authenticationMiddleware is responsible for verifying the access token
    func (r *oauthProxy) authenticationMiddleware(resource *Resource) func(http.Handler) http.Handler {
    	return func(next http.Handler) http.Handler {
    		return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    			clientIP := req.RemoteAddr
    			// grab the user identity from the request
    			user, err := r.getIdentity(req)
    			if err != nil {
    				r.log.Error("no session found in request, redirecting for authorization", zap.Error(err))
    				next.ServeHTTP(w, req.WithContext(r.redirectToAuthorization(w, req)))
    				return
    			}
    			// create the request scope
    			scope := req.Context().Value(contextScopeName).(*RequestScope)
    			scope.Identity = user
    			ctx := context.WithValue(req.Context(), contextScopeName, scope)
    
    			// step: skip if we are running skip-token-verification
    			if r.config.SkipTokenVerification {
    				r.log.Warn("skip token verification enabled, skipping verification - TESTING ONLY")
    				if user.isExpired() {
    					r.log.Error("the session has expired and verification switch off",
    						zap.String("client_ip", clientIP),
    						zap.String("username", user.name),
    						zap.String("expired_on", user.expiresAt.String()))
    
    					next.ServeHTTP(w, req.WithContext(r.redirectToAuthorization(w, req)))
    					return
    				}
    			} else {
    				if err := verifyToken(r.client, user.token); err != nil {
    					// step: if the error post verification is anything other than a token
    					// expired error we immediately throw an access forbidden - as there is
    					// something messed up in the token
    					if err != ErrAccessTokenExpired {
    						r.log.Error("access token failed verification",
    							zap.String("client_ip", clientIP),
    							zap.Error(err))
    
    						next.ServeHTTP(w, req.WithContext(r.accessForbidden(w, req)))
    						return
    					}
    
    					// step: check if we are refreshing the access tokens and if not re-auth
    					if !r.config.EnableRefreshTokens {
    						r.log.Error("session expired and access token refreshing is disabled",
    							zap.String("client_ip", clientIP),
    							zap.String("email", user.name),
    							zap.String("expired_on", user.expiresAt.String()))
    
    						next.ServeHTTP(w, req.WithContext(r.redirectToAuthorization(w, req)))
    						return
    					}
    
    					r.log.Info("accces token for user has expired, attemping to refresh the token",
    						zap.String("client_ip", clientIP),
    						zap.String("email", user.email))
    
    					// step: check if the user has refresh token
    					refresh, encrypted, err := r.retrieveRefreshToken(req.WithContext(ctx), user)
    					if err != nil {
    						r.log.Error("unable to find a refresh token for user",
    							zap.String("client_ip", clientIP),
    							zap.String("email", user.email),
    							zap.Error(err))
    
    						next.ServeHTTP(w, req.WithContext(r.redirectToAuthorization(w, req)))
    						return
    					}
    
    					// attempt to refresh the access token
    					token, exp, err := getRefreshedToken(r.client, refresh)
    					if err != nil {
    						switch err {
    						case ErrRefreshTokenExpired:
    							r.log.Warn("refresh token has expired, cannot retrieve access token",
    								zap.String("client_ip", clientIP),
    								zap.String("email", user.email))
    
    							r.clearAllCookies(req.WithContext(ctx), w)
    						default:
    							r.log.Error("failed to refresh the access token", zap.Error(err))
    						}
    						next.ServeHTTP(w, req.WithContext(r.redirectToAuthorization(w, req)))
    
    						return
    					}
    					// get the expiration of the new access token
    					expiresIn := r.getAccessCookieExpiration(token, refresh)
    
    					r.log.Info("injecting the refreshed access token cookie",
    						zap.String("client_ip", clientIP),
    						zap.String("cookie_name", r.config.CookieAccessName),
    						zap.String("email", user.email),
    						zap.Duration("expires_in", time.Until(exp)))
    
    					accessToken := token.Encode()
    					if r.config.EnableEncryptedToken {
    						if accessToken, err = encodeText(accessToken, r.config.EncryptionKey); err != nil {
    							r.log.Error("unable to encode the access token", zap.Error(err))
    							w.WriteHeader(http.StatusInternalServerError)
    							return
    						}
    					}
    					// step: inject the refreshed access token
    					r.dropAccessTokenCookie(req.WithContext(ctx), w, accessToken, expiresIn)
    
    					if r.useStore() {
    						go func(old, new jose.JWT, encrypted string) {
    							if err := r.DeleteRefreshToken(old); err != nil {
    								r.log.Error("failed to remove old token", zap.Error(err))
    							}
    							if err := r.StoreRefreshToken(new, encrypted); err != nil {
    								r.log.Error("failed to store refresh token", zap.Error(err))
    								return
    							}
    						}(user.token, token, encrypted)
    					}
    					// update the with the new access token and inject into the context
    					user.token = token
    					ctx = context.WithValue(req.Context(), contextScopeName, scope)
    				}
    			}
    
    			next.ServeHTTP(w, req.WithContext(ctx))
    		})
    	}
    }
    
    // admissionMiddleware is responsible checking the access token against the protected resource
    func (r *oauthProxy) admissionMiddleware(resource *Resource) func(http.Handler) http.Handler {
    	claimMatches := make(map[string]*regexp.Regexp)
    	for k, v := range r.config.MatchClaims {
    		claimMatches[k] = regexp.MustCompile(v)
    	}
    
    	return func(next http.Handler) http.Handler {
    		return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    			// we don't need to continue is a decision has been made
    			scope := req.Context().Value(contextScopeName).(*RequestScope)
    			if scope.AccessDenied {
    				next.ServeHTTP(w, req)
    				return
    			}
    			user := scope.Identity
    
    			// @step: we need to check the roles
    			if !hasAccess(resource.Roles, user.roles, true) {
    				r.log.Warn("access denied, invalid roles",
    					zap.String("access", "denied"),
    					zap.String("email", user.email),
    					zap.String("resource", resource.URL),
    					zap.String("roles", resource.getRoles()))
    
    				next.ServeHTTP(w, req.WithContext(r.accessForbidden(w, req)))
    				return
    			}
    
    			// @step: check if we have any groups, the groups are there
    			if !hasAccess(resource.Groups, user.groups, false) {
    				r.log.Warn("access denied, invalid roles",
    					zap.String("access", "denied"),
    					zap.String("email", user.email),
    					zap.String("resource", resource.URL),
    					zap.String("groups", strings.Join(resource.Groups, ",")))
    
    				next.ServeHTTP(w, req.WithContext(r.accessForbidden(w, req)))
    				return
    			}
    
    			// step: if we have any claim matching, lets validate the tokens has the claims
    			for claimName, match := range claimMatches {
    				value, found, err := user.claims.StringClaim(claimName)
    				if err != nil {
    					r.log.Error("unable to extract the claim from token",
    						zap.String("access", "denied"),
    						zap.String("email", user.email),
    						zap.String("resource", resource.URL),
    						zap.Error(err))
    
    					next.ServeHTTP(w, req.WithContext(r.accessForbidden(w, req)))
    					return
    				}
    
    				if !found {
    					r.log.Warn("the token does not have the claim",
    						zap.String("access", "denied"),
    						zap.String("claim", claimName),
    						zap.String("email", user.email),
    						zap.String("resource", resource.URL))
    
    					next.ServeHTTP(w, req.WithContext(r.accessForbidden(w, req)))
    					return
    				}
    
    				// step: check the claim is the same
    				if !match.MatchString(value) {
    					r.log.Warn("the token claims does not match claim requirement",
    						zap.String("access", "denied"),
    						zap.String("claim", claimName),
    						zap.String("email", user.email),
    						zap.String("issued", value),
    						zap.String("required", match.String()),
    						zap.String("resource", resource.URL))
    
    					next.ServeHTTP(w, req.WithContext(r.accessForbidden(w, req)))
    					return
    				}
    			}
    
    			r.log.Debug("access permitted to resource",
    				zap.String("access", "permitted"),
    				zap.String("email", user.email),
    				zap.Duration("expires", time.Until(user.expiresAt)),
    				zap.String("resource", resource.URL))
    
    			next.ServeHTTP(w, req)
    		})
    	}
    }
    
    // headersMiddleware is responsible for add the authentication headers for the upstream
    func (r *oauthProxy) headersMiddleware(custom []string) func(http.Handler) http.Handler {
    	customClaims := make(map[string]string)
    	for _, x := range custom {
    		customClaims[x] = fmt.Sprintf("X-Auth-%s", toHeader(x))
    	}
    
    	cookieFilter := []string{r.config.CookieAccessName, r.config.CookieRefreshName}
    
    	return func(next http.Handler) http.Handler {
    		return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    			scope := req.Context().Value(contextScopeName).(*RequestScope)
    			if scope.Identity != nil {
    				user := scope.Identity
    				req.Header.Set(fmt.Sprintf("%sEmail", r.config.AuthHeaderPrefix), user.email)
    				req.Header.Set(fmt.Sprintf("%sExpiresIn", r.config.AuthHeaderPrefix), user.expiresAt.String())
    				req.Header.Set(fmt.Sprintf("%sGroups", r.config.AuthHeaderPrefix), strings.Join(user.groups, ","))
    				req.Header.Set(fmt.Sprintf("%sRoles", r.config.AuthHeaderPrefix), strings.Join(user.roles, ","))
    				req.Header.Set(fmt.Sprintf("%sSubject", r.config.AuthHeaderPrefix), user.id)
    				req.Header.Set(fmt.Sprintf("%sUserid", r.config.AuthHeaderPrefix), user.name)
    				req.Header.Set(fmt.Sprintf("%sUsername", r.config.AuthHeaderPrefix), user.name)
    
    				// should we add the token header?
    				if r.config.EnableTokenHeader {
    					req.Header.Set(fmt.Sprintf("%sToken", r.config.AuthHeaderPrefix), user.token.Encode())
    				}
    				// add the authorization header if requested
    				if r.config.EnableAuthorizationHeader {
    					req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", user.token.Encode()))
    				}
    				// are we filtering out the cookies
    				if !r.config.EnableAuthorizationCookies {
    					filterCookies(req, cookieFilter)
    				}
    				// inject any custom claims
    				for claim, header := range customClaims {
    					if claim, found := user.claims[claim]; found {
    						req.Header.Set(header, fmt.Sprintf("%v", claim))
    					}
    				}
    			}
    
    			next.ServeHTTP(w, req)
    		})
    	}
    }
    
    // securityMiddleware performs numerous security checks on the request
    func (r *oauthProxy) securityMiddleware(next http.Handler) http.Handler {
    	r.log.Info("enabling the security filter middleware")
    	secure := secure.New(secure.Options{
    		AllowedHosts:          r.config.Hostnames,
    		BrowserXssFilter:      r.config.EnableBrowserXSSFilter,
    		ContentSecurityPolicy: r.config.ContentSecurityPolicy,
    		ContentTypeNosniff:    r.config.EnableContentNoSniff,
    		FrameDeny:             r.config.EnableFrameDeny,
    		SSLRedirect:           r.config.EnableHTTPSRedirect,
    	})
    
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		if err := secure.Process(w, req); err != nil {
    			r.log.Warn("failed security middleware", zap.Error(err))
    			next.ServeHTTP(w, req.WithContext(r.accessForbidden(w, req)))
    			return
    		}
    
    		next.ServeHTTP(w, req)
    	})
    }
    
    // proxyDenyMiddleware just block everything
    func proxyDenyMiddleware(next http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    		sc := req.Context().Value(contextScopeName)
    		var scope *RequestScope
    		if sc == nil {
    			scope = &RequestScope{}
    		} else {
    			scope = sc.(*RequestScope)
    		}
    		scope.AccessDenied = true
    		// update the request context
    		ctx := context.WithValue(req.Context(), contextScopeName, scope)
    
    		next.ServeHTTP(w, req.WithContext(ctx))
    	})
    }