Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
go-sso
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
id
go-sso
Commits
c8f18956
Commit
c8f18956
authored
5 years ago
by
ale
Browse files
Options
Downloads
Patches
Plain Diff
Improve error message when the 2FA constraints are not met
parent
b3cd8da3
No related branches found
Branches containing commit
No related tags found
1 merge request
!6
Refactor the login handler
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
server/login/login.go
+26
-9
26 additions, 9 deletions
server/login/login.go
with
26 additions
and
9 deletions
server/login/login.go
+
26
−
9
View file @
c8f18956
...
...
@@ -4,6 +4,7 @@ import (
"context"
"encoding/gob"
"encoding/json"
"errors"
"fmt"
"log"
"net/http"
...
...
@@ -68,9 +69,25 @@ func (l *loginSession) Reset() {
// Keep Redir.
}
func
(
l
*
loginSession
)
Can2FA
(
method
auth
.
TFAMethod
)
bool
{
return
(
l
.
Username
!=
""
&&
l
.
Password
!=
""
&&
l
.
AuthResponse
!=
nil
&&
l
.
AuthResponse
.
Has2FAMethod
(
method
))
// This method is needlessly detailed, but the error message is useful in debugging.
//
// A boolean version could simply be:
//
// return (l.Username != "" && l.Password != "" && l.AuthResponse != nil &&
// l.AuthResponse.Has2FAMethod(method))
//
func
(
l
*
loginSession
)
Can2FA
(
method
auth
.
TFAMethod
)
error
{
switch
{
case
l
.
Username
==
""
:
return
errors
.
New
(
"empty username"
)
case
l
.
Password
==
""
:
return
errors
.
New
(
"empty password"
)
case
l
.
AuthResponse
==
nil
:
return
errors
.
New
(
"empty auth response"
)
case
!
l
.
AuthResponse
.
Has2FAMethod
(
method
)
:
return
errors
.
New
(
"unsupported 2fa method"
)
}
return
nil
}
func
init
()
{
...
...
@@ -301,8 +318,8 @@ func (l *Login) handleLoginOTP(w http.ResponseWriter, req *http.Request, sess *l
}
// First verify that we are ready to do 2FA.
if
!
sess
.
Can2FA
(
auth
.
TFAMethodOTP
)
{
log
.
Printf
(
"got invalid 2FA request
"
)
if
err
:=
sess
.
Can2FA
(
auth
.
TFAMethodOTP
)
;
err
!=
nil
{
log
.
Printf
(
"got invalid 2FA request
(%v)"
,
err
)
http
.
Redirect
(
w
,
req
,
l
.
urlFor
(
"/login"
),
http
.
StatusFound
)
return
}
...
...
@@ -326,7 +343,7 @@ func (l *Login) handleLoginOTP(w http.ResponseWriter, req *http.Request, sess *l
}
env
[
"Error"
]
=
true
sess
.
Failures
++
if
sess
.
Failures
>
maxFailures
{
if
sess
.
Failures
>
=
maxFailures
{
log
.
Printf
(
"too many login failures for %s, starting over"
,
sess
.
Username
)
http
.
Redirect
(
w
,
req
,
l
.
urlFor
(
"/login"
),
http
.
StatusFound
)
return
...
...
@@ -343,8 +360,8 @@ func (l *Login) handleLoginU2F(w http.ResponseWriter, req *http.Request, sess *l
}
// First verify that we are ready to do 2FA.
if
!
sess
.
Can2FA
(
auth
.
TFAMethodU2F
)
{
log
.
Printf
(
"got invalid 2FA request
"
)
if
err
:=
sess
.
Can2FA
(
auth
.
TFAMethodU2F
)
;
err
!=
nil
{
log
.
Printf
(
"got invalid 2FA request
(%v)"
,
err
)
http
.
Redirect
(
w
,
req
,
l
.
urlFor
(
"/login"
),
http
.
StatusFound
)
return
}
...
...
@@ -376,7 +393,7 @@ func (l *Login) handleLoginU2F(w http.ResponseWriter, req *http.Request, sess *l
}
env
[
"Error"
]
=
true
sess
.
Failures
++
if
sess
.
Failures
>
maxFailures
{
if
sess
.
Failures
>
=
maxFailures
{
log
.
Printf
(
"too many login failures for %s, starting over"
,
sess
.
Username
)
http
.
Redirect
(
w
,
req
,
l
.
urlFor
(
"/login"
),
http
.
StatusFound
)
return
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment