2020-11-13 17:31:39 +00:00
|
|
|
// Copyright 2020 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
// Package callback provides a handler for the OIDC callback endpoint.
|
|
|
|
package callback
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2020-11-16 22:07:34 +00:00
|
|
|
"net/url"
|
2020-11-13 23:59:51 +00:00
|
|
|
"path"
|
2020-11-19 01:15:01 +00:00
|
|
|
"time"
|
2020-11-13 17:31:39 +00:00
|
|
|
|
2020-11-18 21:38:13 +00:00
|
|
|
"github.com/ory/fosite"
|
2020-11-19 01:15:01 +00:00
|
|
|
"github.com/ory/fosite/handler/openid"
|
|
|
|
"github.com/ory/fosite/token/jwt"
|
2020-11-18 21:38:13 +00:00
|
|
|
|
2020-11-13 17:31:39 +00:00
|
|
|
"go.pinniped.dev/internal/httputil/httperr"
|
2020-11-13 23:59:51 +00:00
|
|
|
"go.pinniped.dev/internal/oidc"
|
2020-11-16 16:47:49 +00:00
|
|
|
"go.pinniped.dev/internal/oidc/csrftoken"
|
2020-11-13 23:59:51 +00:00
|
|
|
"go.pinniped.dev/internal/oidc/provider"
|
2020-11-16 19:41:00 +00:00
|
|
|
"go.pinniped.dev/internal/plog"
|
2020-11-13 17:31:39 +00:00
|
|
|
)
|
|
|
|
|
2020-11-19 16:08:21 +00:00
|
|
|
const (
|
|
|
|
// defaultUpstreamUsernameClaim is what we will use to extract the username from an upstream OIDC
|
|
|
|
// ID token if the upstream OIDC IDP did not tell us to use another claim.
|
|
|
|
defaultUpstreamUsernameClaim = "sub"
|
|
|
|
|
|
|
|
// defaultUpstreamGroupsClaim is what we will use to extract the groups from an upstream OIDC ID
|
|
|
|
// token if the upstream OIDC IDP did not tell us to use another claim.
|
|
|
|
defaultUpstreamGroupsClaim = "groups"
|
|
|
|
|
|
|
|
// downstreamGroupsClaim is what we will use to encode the groups in the downstream OIDC ID token
|
|
|
|
// information.
|
|
|
|
// TODO: should this be per-issuer? Or per version?
|
|
|
|
downstreamGroupsClaim = "oidc.pinniped.dev/groups"
|
|
|
|
)
|
|
|
|
|
2020-11-19 16:35:23 +00:00
|
|
|
func NewHandler(
|
|
|
|
downstreamIssuer string,
|
|
|
|
idpListGetter oidc.IDPListGetter,
|
|
|
|
oauthHelper fosite.OAuth2Provider,
|
|
|
|
stateDecoder, cookieDecoder oidc.Decoder,
|
|
|
|
) http.Handler {
|
2020-11-13 17:31:39 +00:00
|
|
|
return httperr.HandlerFunc(func(w http.ResponseWriter, r *http.Request) error {
|
2020-11-16 22:07:34 +00:00
|
|
|
state, err := validateRequest(r, stateDecoder, cookieDecoder)
|
|
|
|
if err != nil {
|
2020-11-16 16:47:49 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-11-19 01:15:01 +00:00
|
|
|
upstreamIDPConfig := findUpstreamIDPConfig(r, idpListGetter)
|
|
|
|
if upstreamIDPConfig == nil {
|
2020-11-16 19:41:00 +00:00
|
|
|
plog.Warning("upstream provider not found")
|
2020-11-13 23:59:51 +00:00
|
|
|
return httperr.New(http.StatusUnprocessableEntity, "upstream provider not found")
|
|
|
|
}
|
|
|
|
|
2020-11-16 22:07:34 +00:00
|
|
|
downstreamAuthParams, err := url.ParseQuery(state.AuthParams)
|
|
|
|
if err != nil {
|
2020-11-19 13:51:23 +00:00
|
|
|
return httperr.New(http.StatusBadRequest, "error reading state downstream auth params")
|
2020-11-16 22:07:34 +00:00
|
|
|
}
|
|
|
|
|
2020-11-19 01:15:01 +00:00
|
|
|
// Recreate enough of the original authorize request so we can pass it to NewAuthorizeRequest().
|
|
|
|
reconstitutedAuthRequest := &http.Request{Form: downstreamAuthParams}
|
|
|
|
authorizeRequester, err := oauthHelper.NewAuthorizeRequest(r.Context(), reconstitutedAuthRequest)
|
|
|
|
if err != nil {
|
2020-11-19 13:51:23 +00:00
|
|
|
return httperr.New(http.StatusBadRequest, "error using state downstream auth params")
|
2020-11-19 01:15:01 +00:00
|
|
|
}
|
|
|
|
|
2020-11-19 14:28:56 +00:00
|
|
|
// Grant the openid scope only if it was requested.
|
2020-11-19 15:20:46 +00:00
|
|
|
// TODO: shouldn't we be potentially granting more scopes than just openid...
|
2020-11-19 14:28:56 +00:00
|
|
|
grantOpenIDScopeIfRequested(authorizeRequester)
|
2020-11-19 01:15:01 +00:00
|
|
|
|
|
|
|
_, idTokenClaims, err := upstreamIDPConfig.ExchangeAuthcodeAndValidateTokens(
|
|
|
|
r.Context(),
|
2020-11-19 15:20:46 +00:00
|
|
|
r.URL.Query().Get("code"), // TODO: do we need to validate this?
|
|
|
|
state.PKCECode,
|
|
|
|
state.Nonce,
|
2020-11-16 22:07:34 +00:00
|
|
|
)
|
2020-11-19 01:15:01 +00:00
|
|
|
if err != nil {
|
2020-11-19 14:00:41 +00:00
|
|
|
return httperr.New(http.StatusBadGateway, "error exchanging and validating upstream tokens")
|
2020-11-19 01:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var username string
|
2020-11-19 16:08:21 +00:00
|
|
|
usernameClaim := upstreamIDPConfig.GetUsernameClaim()
|
|
|
|
if usernameClaim == "" {
|
|
|
|
usernameClaim = defaultUpstreamUsernameClaim
|
|
|
|
}
|
|
|
|
usernameAsInterface, ok := idTokenClaims[usernameClaim]
|
|
|
|
if !ok {
|
|
|
|
panic(err) // TODO
|
|
|
|
}
|
|
|
|
username, ok = usernameAsInterface.(string)
|
2020-11-19 01:15:01 +00:00
|
|
|
if !ok {
|
|
|
|
panic(err) // TODO
|
|
|
|
}
|
|
|
|
|
2020-11-19 16:08:21 +00:00
|
|
|
var groups []string
|
|
|
|
groupsClaim := upstreamIDPConfig.GetGroupsClaim()
|
|
|
|
if groupsClaim == "" {
|
|
|
|
groupsClaim = defaultUpstreamGroupsClaim
|
|
|
|
}
|
|
|
|
groupsAsInterface, ok := idTokenClaims[groupsClaim]
|
|
|
|
if !ok {
|
|
|
|
panic(err) // TODO
|
|
|
|
}
|
|
|
|
groups, ok = groupsAsInterface.([]string)
|
|
|
|
if !ok {
|
|
|
|
panic(err) // TODO
|
|
|
|
}
|
2020-11-19 01:15:01 +00:00
|
|
|
|
|
|
|
now := time.Now()
|
|
|
|
authorizeResponder, err := oauthHelper.NewAuthorizeResponse(r.Context(), authorizeRequester, &openid.DefaultSession{
|
|
|
|
Claims: &jwt.IDTokenClaims{
|
2020-11-19 16:35:23 +00:00
|
|
|
Issuer: downstreamIssuer,
|
2020-11-19 01:15:01 +00:00
|
|
|
Subject: username,
|
|
|
|
Audience: []string{"my-client"}, // TODO use the right value here
|
|
|
|
ExpiresAt: now.Add(time.Minute * 30), // TODO use the right value here
|
|
|
|
IssuedAt: now, // TODO test this
|
|
|
|
RequestedAt: now, // TODO test this
|
|
|
|
AuthTime: now, // TODO test this
|
2020-11-19 16:08:21 +00:00
|
|
|
Extra: map[string]interface{}{
|
|
|
|
downstreamGroupsClaim: groups,
|
|
|
|
},
|
2020-11-19 01:15:01 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
panic(err) // TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
oauthHelper.WriteAuthorizeResponse(w, authorizeRequester, authorizeResponder)
|
2020-11-16 22:07:34 +00:00
|
|
|
|
2020-11-16 19:41:00 +00:00
|
|
|
return nil
|
2020-11-13 17:31:39 +00:00
|
|
|
})
|
|
|
|
}
|
2020-11-13 23:59:51 +00:00
|
|
|
|
2020-11-16 22:07:34 +00:00
|
|
|
func validateRequest(r *http.Request, stateDecoder, cookieDecoder oidc.Decoder) (*oidc.UpstreamStateParamData, error) {
|
2020-11-16 19:41:00 +00:00
|
|
|
if r.Method != http.MethodGet {
|
2020-11-16 22:07:34 +00:00
|
|
|
return nil, httperr.Newf(http.StatusMethodNotAllowed, "%s (try GET)", r.Method)
|
2020-11-16 19:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
csrfValue, err := readCSRFCookie(r, cookieDecoder)
|
|
|
|
if err != nil {
|
|
|
|
plog.InfoErr("error reading CSRF cookie", err)
|
2020-11-16 22:07:34 +00:00
|
|
|
return nil, err
|
2020-11-16 19:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if r.FormValue("code") == "" {
|
|
|
|
plog.Info("code param not found")
|
2020-11-16 22:07:34 +00:00
|
|
|
return nil, httperr.New(http.StatusBadRequest, "code param not found")
|
2020-11-16 19:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if r.FormValue("state") == "" {
|
|
|
|
plog.Info("state param not found")
|
2020-11-16 22:07:34 +00:00
|
|
|
return nil, httperr.New(http.StatusBadRequest, "state param not found")
|
2020-11-16 19:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
state, err := readState(r, stateDecoder)
|
|
|
|
if err != nil {
|
|
|
|
plog.InfoErr("error reading state", err)
|
2020-11-16 22:07:34 +00:00
|
|
|
return nil, err
|
2020-11-16 19:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if state.CSRFToken != csrfValue {
|
|
|
|
plog.InfoErr("CSRF value does not match", err)
|
2020-11-16 22:07:34 +00:00
|
|
|
return nil, httperr.Wrap(http.StatusForbidden, "CSRF value does not match", err)
|
2020-11-16 19:41:00 +00:00
|
|
|
}
|
|
|
|
|
2020-11-16 22:07:34 +00:00
|
|
|
return state, nil
|
2020-11-16 19:41:00 +00:00
|
|
|
}
|
|
|
|
|
2020-11-19 01:15:01 +00:00
|
|
|
func findUpstreamIDPConfig(r *http.Request, idpListGetter oidc.IDPListGetter) provider.UpstreamOIDCIdentityProviderI {
|
2020-11-13 23:59:51 +00:00
|
|
|
_, lastPathComponent := path.Split(r.URL.Path)
|
|
|
|
for _, p := range idpListGetter.GetIDPList() {
|
2020-11-18 21:38:13 +00:00
|
|
|
if p.GetName() == lastPathComponent {
|
2020-11-19 01:15:01 +00:00
|
|
|
return p
|
2020-11-13 23:59:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2020-11-16 16:47:49 +00:00
|
|
|
|
2020-11-16 19:41:00 +00:00
|
|
|
func readCSRFCookie(r *http.Request, cookieDecoder oidc.Decoder) (csrftoken.CSRFToken, error) {
|
2020-11-16 16:47:49 +00:00
|
|
|
receivedCSRFCookie, err := r.Cookie(oidc.CSRFCookieName)
|
|
|
|
if err != nil {
|
|
|
|
// Error means that the cookie was not found
|
2020-11-16 19:41:00 +00:00
|
|
|
return "", httperr.Wrap(http.StatusForbidden, "CSRF cookie is missing", err)
|
2020-11-16 16:47:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var csrfFromCookie csrftoken.CSRFToken
|
|
|
|
err = cookieDecoder.Decode(oidc.CSRFCookieEncodingName, receivedCSRFCookie.Value, &csrfFromCookie)
|
|
|
|
if err != nil {
|
2020-11-16 19:41:00 +00:00
|
|
|
return "", httperr.Wrap(http.StatusForbidden, "error reading CSRF cookie", err)
|
2020-11-16 16:47:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return csrfFromCookie, nil
|
|
|
|
}
|
2020-11-16 19:41:00 +00:00
|
|
|
|
|
|
|
func readState(r *http.Request, stateDecoder oidc.Decoder) (*oidc.UpstreamStateParamData, error) {
|
|
|
|
var state oidc.UpstreamStateParamData
|
|
|
|
if err := stateDecoder.Decode(
|
|
|
|
oidc.UpstreamStateParamEncodingName,
|
|
|
|
r.FormValue("state"),
|
|
|
|
&state,
|
|
|
|
); err != nil {
|
|
|
|
return nil, httperr.New(http.StatusBadRequest, "error reading state")
|
|
|
|
}
|
|
|
|
|
|
|
|
if state.FormatVersion != oidc.UpstreamStateParamFormatVersion {
|
|
|
|
return nil, httperr.New(http.StatusUnprocessableEntity, "state format version is invalid")
|
|
|
|
}
|
|
|
|
|
|
|
|
return &state, nil
|
|
|
|
}
|
2020-11-19 14:28:56 +00:00
|
|
|
|
|
|
|
func grantOpenIDScopeIfRequested(authorizeRequester fosite.AuthorizeRequester) {
|
|
|
|
for _, scope := range authorizeRequester.GetRequestedScopes() {
|
|
|
|
if scope == "openid" {
|
|
|
|
authorizeRequester.GrantScope(scope)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|