Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add error.id to invalid cookie/token settings flow #1919

Merged
merged 6 commits into from
Nov 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions selfservice/flow/login/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func (h *Handler) NewLoginFlow(w http.ResponseWriter, r *http.Request, ft flow.T

// We assume an error means the user has no session
sess, err := h.d.SessionManager().FetchFromRequest(r.Context(), r)
if errors.Is(err, session.ErrNoActiveSessionFound) {
if e := new(session.ErrNoActiveSessionFound); errors.As(err, &e) {
// No session exists yet

// We can not request an AAL > 1 because we must first verify the first factor.
Expand Down Expand Up @@ -550,7 +550,7 @@ func (h *Handler) submitFlow(w http.ResponseWriter, r *http.Request, _ httproute

http.Redirect(w, r, h.d.Config(r.Context()).SelfServiceBrowserDefaultReturnTo().String(), http.StatusSeeOther)
return
} else if errors.Is(err, session.ErrNoActiveSessionFound) {
} else if e := new(session.ErrNoActiveSessionFound); errors.As(err, &e) {
// Only failure scenario here is if we try to upgrade the session to a higher AAL without actually
// having a session.
if f.RequestedAAL > identity.AuthenticatorAssuranceLevel1 {
Expand Down
2 changes: 1 addition & 1 deletion selfservice/flow/settings/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (s *ErrorHandler) WriteFlowError(
shouldRespondWithJSON = true
}

if errors.Is(err, session.ErrNoActiveSessionFound) {
if e := new(session.ErrNoActiveSessionFound); errors.As(err, &e) {
if shouldRespondWithJSON {
s.d.Writer().WriteError(w, r, err)
} else {
Expand Down
6 changes: 3 additions & 3 deletions selfservice/flow/settings/error_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func TestHandleError(t *testing.T) {

settingsFlow = newFlow(t, time.Minute, flow.TypeBrowser)
settingsFlow.IdentityID = id.ID
flowError = errors.WithStack(session.ErrNoActiveSessionFound)
flowError = errors.WithStack(session.NewErrNoActiveSessionFound())
flowMethod = settings.StrategyProfile

res, err := ts.Client().Do(testhelpers.NewHTTPGetJSONRequest(t, ts.URL+"/error"))
Expand All @@ -213,7 +213,7 @@ func TestHandleError(t *testing.T) {

body, err := ioutil.ReadAll(res.Body)
require.NoError(t, err)
assert.Equal(t, session.ErrNoActiveSessionFound.Reason(), gjson.GetBytes(body, "error.reason").String(), "%s", body)
assert.Equal(t, session.NewErrNoActiveSessionFound().Reason(), gjson.GetBytes(body, "error.reason").String(), "%s", body)
})

t.Run("case=aal too low", func(t *testing.T) {
Expand Down Expand Up @@ -294,7 +294,7 @@ func TestHandleError(t *testing.T) {

settingsFlow = newFlow(t, time.Minute, flow.TypeBrowser)
settingsFlow.IdentityID = id.ID
flowError = errors.WithStack(session.ErrNoActiveSessionFound)
flowError = errors.WithStack(session.NewErrNoActiveSessionFound())
flowMethod = settings.StrategyProfile

res, err := ts.Client().Get(ts.URL + "/error")
Expand Down
2 changes: 1 addition & 1 deletion selfservice/flow/settings/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (h *Handler) RegisterPublicRoutes(public *x.RouterPublic) {

public.GET(RouteInitBrowserFlow, h.d.SessionHandler().IsAuthenticated(h.initBrowserFlow, func(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
if x.IsJSONRequest(r) {
h.d.Writer().WriteError(w, r, errors.WithStack(herodot.ErrForbidden.WithReason("Please include a valid session cookie or session token when calling this endpoint.")))
h.d.Writer().WriteError(w, r, session.NewErrNoActiveSessionFound())
} else {
http.Redirect(w, r, h.d.Config(r.Context()).SelfServiceFlowLoginUI().String(), http.StatusFound)
}
Expand Down
14 changes: 14 additions & 0 deletions selfservice/flow/settings/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package settings_test
import (
"context"
"encoding/json"
"github.com/ory/kratos/text"
"io/ioutil"
"net/http"
"net/url"
Expand Down Expand Up @@ -116,6 +117,12 @@ func TestHandler(t *testing.T) {

t.Run("endpoint=init", func(t *testing.T) {
t.Run("description=init a flow as API", func(t *testing.T) {
t.Run("description=without privileges", func(t *testing.T) {
res, body := initFlow(t, new(http.Client), true)
assert.Equal(t, http.StatusUnauthorized, res.StatusCode, "%s", body)
assert.Equal(t, text.ErrNoActiveSession, gjson.GetBytes(body, "error.id").String(),"%s", body)
})

t.Run("description=success", func(t *testing.T) {
user1 := testhelpers.NewHTTPClientWithArbitrarySessionToken(t, reg)
res, body := initFlow(t, user1, true)
Expand All @@ -132,6 +139,12 @@ func TestHandler(t *testing.T) {
})

t.Run("description=init a flow as browser", func(t *testing.T) {
t.Run("description=without privileges", func(t *testing.T) {
res, body := initSPAFlow(t, new(http.Client))
assert.Equal(t, http.StatusUnauthorized, res.StatusCode, "%s", body)
assert.Equal(t, text.ErrNoActiveSession, gjson.GetBytes(body, "error.id").String(),"%s", body)
})

t.Run("description=success", func(t *testing.T) {
user1 := testhelpers.NewHTTPClientWithArbitrarySessionCookie(t, reg)
res, body := initFlow(t, user1, false)
Expand Down Expand Up @@ -363,6 +376,7 @@ func TestHandler(t *testing.T) {
})
})
})

t.Run("case=relative redirect when self-service settings ui is a relative url", func(t *testing.T) {
reg.Config(context.Background()).MustSet(config.ViperKeySelfServiceSettingsURL, "/settings-ts")
user1 := testhelpers.NewNoRedirectHTTPClientWithArbitrarySessionCookie(t, reg)
Expand Down
6 changes: 2 additions & 4 deletions session/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import (

"github.com/ory/x/decoderx"

"github.com/ory/x/errorsx"

"github.com/ory/herodot"

"github.com/ory/kratos/driver/config"
Expand Down Expand Up @@ -234,7 +232,7 @@ func (h *Handler) IsAuthenticated(wrap httprouter.Handle, onUnauthenticated http
return
}

h.r.Writer().WriteError(w, r, errors.WithStack(herodot.ErrForbidden.WithReason("This endpoint can only be accessed with a valid session. Please log in and try again.")))
h.r.Writer().WriteError(w, r, errors.WithStack(NewErrNoActiveSessionFound().WithReason("This endpoint can only be accessed with a valid session. Please log in and try again.")))
return
}

Expand All @@ -245,7 +243,7 @@ func (h *Handler) IsAuthenticated(wrap httprouter.Handle, onUnauthenticated http
func (h *Handler) IsNotAuthenticated(wrap httprouter.Handle, onAuthenticated httprouter.Handle) httprouter.Handle {
return func(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
if _, err := h.r.SessionManager().FetchFromRequest(r.Context(), r); err != nil {
if errorsx.Cause(err).Error() == ErrNoActiveSessionFound.Error() {
if e := new(ErrNoActiveSessionFound); errors.As(err, &e) {
wrap(w, r, ps)
return
}
Expand Down
2 changes: 1 addition & 1 deletion session/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func TestIsAuthenticated(t *testing.T) {
{
c: http.DefaultClient,
call: "/privileged/without-callback",
code: http.StatusForbidden,
code: http.StatusUnauthorized,
},
} {
t.Run(fmt.Sprintf("case=%d", k), func(t *testing.T) {
Expand Down
19 changes: 15 additions & 4 deletions session/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,21 @@ import (
"github.com/ory/herodot"
)

var (
// ErrNoActiveSessionFound is returned when no active cookie session could be found in the request.
ErrNoActiveSessionFound = herodot.ErrUnauthorized.WithID(text.ErrNoActiveSession).WithError("request does not have a valid authentication session").WithReason("No active session was found in this request.")
)
// ErrNoActiveSessionFound is returned when no active cookie session could be found in the request.
type ErrNoActiveSessionFound struct {
*herodot.DefaultError `json:"error"`
}

// NewErrNoActiveSessionFound creates a new ErrNoActiveSessionFound
func NewErrNoActiveSessionFound() *ErrNoActiveSessionFound {
return &ErrNoActiveSessionFound{
DefaultError: herodot.ErrUnauthorized.WithID(text.ErrNoActiveSession).WithError("request does not have a valid authentication session").WithReason("No active session was found in this request."),
}
}

func (e *ErrNoActiveSessionFound) EnhanceJSONError() interface{} {
return e
}

// ErrAALNotSatisfied is returned when an active session was found but the requested AAL is not satisfied.
//
Expand Down
6 changes: 3 additions & 3 deletions session/manager_http.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,19 +132,19 @@ func (s *ManagerHTTP) extractToken(r *http.Request) string {
func (s *ManagerHTTP) FetchFromRequest(ctx context.Context, r *http.Request) (*Session, error) {
token := s.extractToken(r)
if token == "" {
return nil, errors.WithStack(ErrNoActiveSessionFound)
return nil, errors.WithStack(NewErrNoActiveSessionFound())
}

se, err := s.r.SessionPersister().GetSessionByToken(ctx, token)
if err != nil {
if errors.Is(err, herodot.ErrNotFound) || errors.Is(err, sqlcon.ErrNoRows) {
return nil, errors.WithStack(ErrNoActiveSessionFound)
return nil, errors.WithStack(NewErrNoActiveSessionFound())
}
return nil, err
}

if !se.IsActive() {
return nil, errors.WithStack(ErrNoActiveSessionFound)
return nil, errors.WithStack(NewErrNoActiveSessionFound())
}

se.Identity = se.Identity.CopyWithoutCredentials()
Expand Down