2024-04-28 13:08:41 +02:00
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
// SPDX-FileCopyrightText: © 2015 LabStack LLC and Echo contributors
|
|
|
|
|
2020-02-11 19:33:19 +01:00
|
|
|
package middleware
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/subtle"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
)
|
|
|
|
|
2024-04-28 13:08:41 +02:00
|
|
|
// CSRFConfig defines the config for CSRF middleware.
|
|
|
|
type CSRFConfig struct {
|
|
|
|
// Skipper defines a function to skip middleware.
|
|
|
|
Skipper Skipper
|
|
|
|
|
|
|
|
// TokenLength is the length of the generated token.
|
|
|
|
TokenLength uint8 `yaml:"token_length"`
|
|
|
|
// Optional. Default value 32.
|
|
|
|
|
|
|
|
// TokenLookup is a string in the form of "<source>:<name>" or "<source>:<name>,<source>:<name>" that is used
|
|
|
|
// to extract token from the request.
|
|
|
|
// Optional. Default value "header:X-CSRF-Token".
|
|
|
|
// Possible values:
|
|
|
|
// - "header:<name>" or "header:<name>:<cut-prefix>"
|
|
|
|
// - "query:<name>"
|
|
|
|
// - "form:<name>"
|
|
|
|
// Multiple sources example:
|
|
|
|
// - "header:X-CSRF-Token,query:csrf"
|
|
|
|
TokenLookup string `yaml:"token_lookup"`
|
|
|
|
|
|
|
|
// Context key to store generated CSRF token into context.
|
|
|
|
// Optional. Default value "csrf".
|
|
|
|
ContextKey string `yaml:"context_key"`
|
|
|
|
|
|
|
|
// Name of the CSRF cookie. This cookie will store CSRF token.
|
|
|
|
// Optional. Default value "csrf".
|
|
|
|
CookieName string `yaml:"cookie_name"`
|
|
|
|
|
|
|
|
// Domain of the CSRF cookie.
|
|
|
|
// Optional. Default value none.
|
|
|
|
CookieDomain string `yaml:"cookie_domain"`
|
|
|
|
|
|
|
|
// Path of the CSRF cookie.
|
|
|
|
// Optional. Default value none.
|
|
|
|
CookiePath string `yaml:"cookie_path"`
|
|
|
|
|
|
|
|
// Max age (in seconds) of the CSRF cookie.
|
|
|
|
// Optional. Default value 86400 (24hr).
|
|
|
|
CookieMaxAge int `yaml:"cookie_max_age"`
|
|
|
|
|
|
|
|
// Indicates if CSRF cookie is secure.
|
|
|
|
// Optional. Default value false.
|
|
|
|
CookieSecure bool `yaml:"cookie_secure"`
|
|
|
|
|
|
|
|
// Indicates if CSRF cookie is HTTP only.
|
|
|
|
// Optional. Default value false.
|
|
|
|
CookieHTTPOnly bool `yaml:"cookie_http_only"`
|
|
|
|
|
|
|
|
// Indicates SameSite mode of the CSRF cookie.
|
|
|
|
// Optional. Default value SameSiteDefaultMode.
|
|
|
|
CookieSameSite http.SameSite `yaml:"cookie_same_site"`
|
|
|
|
|
|
|
|
// ErrorHandler defines a function which is executed for returning custom errors.
|
|
|
|
ErrorHandler CSRFErrorHandler
|
|
|
|
}
|
2022-11-02 17:50:56 +01:00
|
|
|
|
2024-04-28 13:08:41 +02:00
|
|
|
// CSRFErrorHandler is a function which is executed for creating custom errors.
|
|
|
|
type CSRFErrorHandler func(err error, c echo.Context) error
|
2020-02-11 19:33:19 +01:00
|
|
|
|
2022-08-18 01:16:43 +02:00
|
|
|
// ErrCSRFInvalid is returned when CSRF check fails
|
|
|
|
var ErrCSRFInvalid = echo.NewHTTPError(http.StatusForbidden, "invalid csrf token")
|
|
|
|
|
2024-04-28 13:08:41 +02:00
|
|
|
// DefaultCSRFConfig is the default CSRF middleware config.
|
|
|
|
var DefaultCSRFConfig = CSRFConfig{
|
|
|
|
Skipper: DefaultSkipper,
|
|
|
|
TokenLength: 32,
|
|
|
|
TokenLookup: "header:" + echo.HeaderXCSRFToken,
|
|
|
|
ContextKey: "csrf",
|
|
|
|
CookieName: "_csrf",
|
|
|
|
CookieMaxAge: 86400,
|
|
|
|
CookieSameSite: http.SameSiteDefaultMode,
|
|
|
|
}
|
2020-02-11 19:33:19 +01:00
|
|
|
|
|
|
|
// CSRF returns a Cross-Site Request Forgery (CSRF) middleware.
|
|
|
|
// See: https://en.wikipedia.org/wiki/Cross-site_request_forgery
|
|
|
|
func CSRF() echo.MiddlewareFunc {
|
|
|
|
c := DefaultCSRFConfig
|
|
|
|
return CSRFWithConfig(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CSRFWithConfig returns a CSRF middleware with config.
|
|
|
|
// See `CSRF()`.
|
|
|
|
func CSRFWithConfig(config CSRFConfig) echo.MiddlewareFunc {
|
|
|
|
// Defaults
|
|
|
|
if config.Skipper == nil {
|
|
|
|
config.Skipper = DefaultCSRFConfig.Skipper
|
|
|
|
}
|
|
|
|
if config.TokenLength == 0 {
|
|
|
|
config.TokenLength = DefaultCSRFConfig.TokenLength
|
|
|
|
}
|
2024-04-28 13:08:41 +02:00
|
|
|
|
2020-02-11 19:33:19 +01:00
|
|
|
if config.TokenLookup == "" {
|
|
|
|
config.TokenLookup = DefaultCSRFConfig.TokenLookup
|
|
|
|
}
|
|
|
|
if config.ContextKey == "" {
|
|
|
|
config.ContextKey = DefaultCSRFConfig.ContextKey
|
|
|
|
}
|
|
|
|
if config.CookieName == "" {
|
|
|
|
config.CookieName = DefaultCSRFConfig.CookieName
|
|
|
|
}
|
|
|
|
if config.CookieMaxAge == 0 {
|
|
|
|
config.CookieMaxAge = DefaultCSRFConfig.CookieMaxAge
|
|
|
|
}
|
2021-11-12 12:28:10 +01:00
|
|
|
if config.CookieSameSite == http.SameSiteNoneMode {
|
|
|
|
config.CookieSecure = true
|
|
|
|
}
|
2020-02-11 19:33:19 +01:00
|
|
|
|
2023-03-17 13:19:17 +01:00
|
|
|
extractors, cErr := CreateExtractors(config.TokenLookup)
|
|
|
|
if cErr != nil {
|
|
|
|
panic(cErr)
|
2020-02-11 19:33:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return func(next echo.HandlerFunc) echo.HandlerFunc {
|
|
|
|
return func(c echo.Context) error {
|
|
|
|
if config.Skipper(c) {
|
|
|
|
return next(c)
|
|
|
|
}
|
|
|
|
|
|
|
|
token := ""
|
2022-08-18 01:16:43 +02:00
|
|
|
if k, err := c.Cookie(config.CookieName); err != nil {
|
2024-04-28 13:08:41 +02:00
|
|
|
token = randomString(config.TokenLength)
|
2020-02-11 19:33:19 +01:00
|
|
|
} else {
|
2022-08-18 01:16:43 +02:00
|
|
|
token = k.Value // Reuse token
|
2020-02-11 19:33:19 +01:00
|
|
|
}
|
|
|
|
|
2022-08-18 01:16:43 +02:00
|
|
|
switch c.Request().Method {
|
2020-02-11 19:33:19 +01:00
|
|
|
case http.MethodGet, http.MethodHead, http.MethodOptions, http.MethodTrace:
|
|
|
|
default:
|
|
|
|
// Validate token only for requests which are not defined as 'safe' by RFC7231
|
2022-08-18 01:16:43 +02:00
|
|
|
var lastExtractorErr error
|
|
|
|
var lastTokenErr error
|
|
|
|
outer:
|
|
|
|
for _, extractor := range extractors {
|
|
|
|
clientTokens, err := extractor(c)
|
|
|
|
if err != nil {
|
|
|
|
lastExtractorErr = err
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, clientToken := range clientTokens {
|
|
|
|
if validateCSRFToken(token, clientToken) {
|
|
|
|
lastTokenErr = nil
|
|
|
|
lastExtractorErr = nil
|
|
|
|
break outer
|
|
|
|
}
|
|
|
|
lastTokenErr = ErrCSRFInvalid
|
|
|
|
}
|
2020-02-11 19:33:19 +01:00
|
|
|
}
|
2022-11-02 17:50:56 +01:00
|
|
|
var finalErr error
|
2022-08-18 01:16:43 +02:00
|
|
|
if lastTokenErr != nil {
|
2022-11-02 17:50:56 +01:00
|
|
|
finalErr = lastTokenErr
|
2022-08-18 01:16:43 +02:00
|
|
|
} else if lastExtractorErr != nil {
|
|
|
|
// ugly part to preserve backwards compatible errors. someone could rely on them
|
|
|
|
if lastExtractorErr == errQueryExtractorValueMissing {
|
|
|
|
lastExtractorErr = echo.NewHTTPError(http.StatusBadRequest, "missing csrf token in the query string")
|
|
|
|
} else if lastExtractorErr == errFormExtractorValueMissing {
|
|
|
|
lastExtractorErr = echo.NewHTTPError(http.StatusBadRequest, "missing csrf token in the form parameter")
|
|
|
|
} else if lastExtractorErr == errHeaderExtractorValueMissing {
|
|
|
|
lastExtractorErr = echo.NewHTTPError(http.StatusBadRequest, "missing csrf token in request header")
|
|
|
|
} else {
|
|
|
|
lastExtractorErr = echo.NewHTTPError(http.StatusBadRequest, lastExtractorErr.Error())
|
|
|
|
}
|
2022-11-02 17:50:56 +01:00
|
|
|
finalErr = lastExtractorErr
|
|
|
|
}
|
|
|
|
|
|
|
|
if finalErr != nil {
|
|
|
|
if config.ErrorHandler != nil {
|
|
|
|
return config.ErrorHandler(finalErr, c)
|
|
|
|
}
|
|
|
|
return finalErr
|
2020-02-11 19:33:19 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set CSRF cookie
|
|
|
|
cookie := new(http.Cookie)
|
|
|
|
cookie.Name = config.CookieName
|
|
|
|
cookie.Value = token
|
|
|
|
if config.CookiePath != "" {
|
|
|
|
cookie.Path = config.CookiePath
|
|
|
|
}
|
|
|
|
if config.CookieDomain != "" {
|
|
|
|
cookie.Domain = config.CookieDomain
|
|
|
|
}
|
2021-11-12 12:28:10 +01:00
|
|
|
if config.CookieSameSite != http.SameSiteDefaultMode {
|
|
|
|
cookie.SameSite = config.CookieSameSite
|
|
|
|
}
|
2020-02-11 19:33:19 +01:00
|
|
|
cookie.Expires = time.Now().Add(time.Duration(config.CookieMaxAge) * time.Second)
|
|
|
|
cookie.Secure = config.CookieSecure
|
|
|
|
cookie.HttpOnly = config.CookieHTTPOnly
|
|
|
|
c.SetCookie(cookie)
|
|
|
|
|
|
|
|
// Store token in the context
|
|
|
|
c.Set(config.ContextKey, token)
|
|
|
|
|
|
|
|
// Protect clients from caching the response
|
|
|
|
c.Response().Header().Add(echo.HeaderVary, echo.HeaderCookie)
|
|
|
|
|
|
|
|
return next(c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func validateCSRFToken(token, clientToken string) bool {
|
|
|
|
return subtle.ConstantTimeCompare([]byte(token), []byte(clientToken)) == 1
|
|
|
|
}
|