Skip to content

Commit

Permalink
chore: build tag (#3613)
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Oct 24, 2023
1 parent 0a5e043 commit 083c90d
Show file tree
Hide file tree
Showing 4 changed files with 423 additions and 68 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -25,6 +25,7 @@ LICENSE.txt
hydra-login-consent-node
./cypress/screenshots
*-packr.go
consent/csrf_flagka.go
packrd/
persistence/sql/migrations/schema.sql
cypress/videos
Expand Down
74 changes: 74 additions & 0 deletions consent/csrf.go
@@ -0,0 +1,74 @@
// Copyright © 2023 Ory Corp
// SPDX-License-Identifier: Apache-2.0

//go:build !flagka

package consent

import (
"net/http"
"strings"
"time"

"github.com/gorilla/sessions"

"github.com/ory/fosite"
"github.com/ory/hydra/v2/x"
"github.com/ory/x/errorsx"
"github.com/ory/x/mapx"
)

func createCsrfSession(w http.ResponseWriter, r *http.Request, conf x.CookieConfigProvider, store sessions.Store, name string, csrfValue string, maxAge time.Duration) error {
// Errors can be ignored here, because we always get a session back. Error typically means that the
// session doesn't exist yet.
session, _ := store.Get(r, name)

sameSite := conf.CookieSameSiteMode(r.Context())
if isLegacyCsrfSessionName(name) {
sameSite = 0
}

session.Values["csrf"] = csrfValue
session.Options.HttpOnly = true
session.Options.Secure = conf.CookieSecure(r.Context())
session.Options.SameSite = sameSite
session.Options.Domain = conf.CookieDomain(r.Context())
session.Options.MaxAge = int(maxAge.Seconds())
if err := session.Save(r, w); err != nil {
return errorsx.WithStack(err)
}

if sameSite == http.SameSiteNoneMode && conf.CookieSameSiteLegacyWorkaround(r.Context()) {
return createCsrfSession(w, r, conf, store, legacyCsrfSessionName(name), csrfValue, maxAge)
}

return nil
}

func validateCsrfSession(r *http.Request, conf x.CookieConfigProvider, store sessions.Store, name, expectedCSRF string) error {
if cookie, err := getCsrfSession(r, store, conf, name); err != nil {
return errorsx.WithStack(fosite.ErrRequestForbidden.WithHint("CSRF session cookie could not be decoded."))
} else if csrf, err := mapx.GetString(cookie.Values, "csrf"); err != nil {
return errorsx.WithStack(fosite.ErrRequestForbidden.WithHint("No CSRF value available in the session cookie."))
} else if csrf != expectedCSRF {
return errorsx.WithStack(fosite.ErrRequestForbidden.WithHint("The CSRF value from the token does not match the CSRF value from the data store."))
}

return nil
}

func getCsrfSession(r *http.Request, store sessions.Store, conf x.CookieConfigProvider, name string) (*sessions.Session, error) {
cookie, err := store.Get(r, name)
if !isLegacyCsrfSessionName(name) && conf.CookieSameSiteMode(r.Context()) == http.SameSiteNoneMode && conf.CookieSameSiteLegacyWorkaround(r.Context()) && (err != nil || len(cookie.Values) == 0) {
return store.Get(r, legacyCsrfSessionName(name))
}
return cookie, err
}

func legacyCsrfSessionName(name string) string {
return name + "_legacy"
}

func isLegacyCsrfSessionName(name string) bool {
return strings.HasSuffix(name, "_legacy")
}
69 changes: 1 addition & 68 deletions consent/helper.go
Expand Up @@ -4,21 +4,9 @@
package consent

import (
"net/http"
"strings"
"time"

"github.com/ory/hydra/v2/flow"
"github.com/ory/hydra/v2/x"

"github.com/ory/x/errorsx"

"github.com/gorilla/sessions"

"github.com/ory/fosite"
"github.com/ory/x/mapx"

"github.com/ory/hydra/v2/client"
"github.com/ory/hydra/v2/flow"
)

func sanitizeClientFromRequest(ar fosite.AuthorizeRequester) *client.Client {
Expand Down Expand Up @@ -50,58 +38,3 @@ func matchScopes(scopeStrategy fosite.ScopeStrategy, previousConsent []flow.Acce

return nil
}

func createCsrfSession(w http.ResponseWriter, r *http.Request, conf x.CookieConfigProvider, store sessions.Store, name string, csrfValue string, maxAge time.Duration) error {
// Errors can be ignored here, because we always get a session back. Error typically means that the
// session doesn't exist yet.
session, _ := store.Get(r, name)

sameSite := conf.CookieSameSiteMode(r.Context())
if isLegacyCsrfSessionName(name) {
sameSite = 0
}

session.Values["csrf"] = csrfValue
session.Options.HttpOnly = true
session.Options.Secure = conf.CookieSecure(r.Context())
session.Options.SameSite = sameSite
session.Options.Domain = conf.CookieDomain(r.Context())
session.Options.MaxAge = int(maxAge.Seconds())
if err := session.Save(r, w); err != nil {
return errorsx.WithStack(err)
}

if sameSite == http.SameSiteNoneMode && conf.CookieSameSiteLegacyWorkaround(r.Context()) {
return createCsrfSession(w, r, conf, store, legacyCsrfSessionName(name), csrfValue, maxAge)
}

return nil
}

func validateCsrfSession(r *http.Request, conf x.CookieConfigProvider, store sessions.Store, name, expectedCSRF string) error {
if cookie, err := getCsrfSession(r, store, conf, name); err != nil {
return errorsx.WithStack(fosite.ErrRequestForbidden.WithHint("CSRF session cookie could not be decoded."))
} else if csrf, err := mapx.GetString(cookie.Values, "csrf"); err != nil {
return errorsx.WithStack(fosite.ErrRequestForbidden.WithHint("No CSRF value available in the session cookie."))
} else if csrf != expectedCSRF {
return errorsx.WithStack(fosite.ErrRequestForbidden.WithHint("The CSRF value from the token does not match the CSRF value from the data store."))
}

return nil
}

func getCsrfSession(r *http.Request, store sessions.Store, conf x.CookieConfigProvider, name string) (*sessions.Session, error) {
cookie, err := store.Get(r, name)
if !isLegacyCsrfSessionName(name) && conf.CookieSameSiteMode(r.Context()) == http.SameSiteNoneMode && conf.CookieSameSiteLegacyWorkaround(r.Context()) && (err != nil || len(cookie.Values) == 0) {
return store.Get(r, legacyCsrfSessionName(name))
}
return cookie, err
}

func legacyCsrfSessionName(name string) string {
return name + "_legacy"
}

func isLegacyCsrfSessionName(name string) bool {
return strings.HasSuffix(name, "_legacy")
}

0 comments on commit 083c90d

Please sign in to comment.