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 client no retry on good token #171

Closed
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
1 change: 1 addition & 0 deletions cmd/keymaster/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,7 @@ func setupCerts(

}
}
logger.Debugf(1, "SetupCerts: authenticaiton Complete")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/authenticaiton/authentication/

if err := signers.Wait(); err != nil {
return err
}
Expand Down
12 changes: 12 additions & 0 deletions cmd/keymasterd/2fa_okta.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,24 @@ func (state *RuntimeState) oktaPushStartHandler(w http.ResponseWriter, r *http.R
state.writeFailureResponse(w, r, http.StatusInternalServerError, "Apperent Misconfiguration")
return
}
userResponse, err := oktaAuth.GetValidUserResponse(authData.Username)
if err != nil {
logger.Debugf(2, "oktaPushStartHandler: ")
}
if len(userResponse.Embedded.Factor) < 1 {
logger.Printf("oktaPushStartHandler: user %s does not have valid authenticators", authData.Username)
logger.Debugf(2, "oktaPushStartHandler: usedata for broken user%s is :%s", authData.Username, userResponse)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/usedata/userdata/ ?

state.writeFailureResponse(w, r, http.StatusPreconditionFailed, "No valid MFA authenticators available")
return
}

pushResponse, err := oktaAuth.ValidateUserPush(authData.Username)
if err != nil {
logger.Println(err)
state.writeFailureResponse(w, r, http.StatusInternalServerError, "Failure when validating OKTA push")
return
}
logger.Debugf(2, "oktaPushStartHandler: after validating push response=%+v", pushResponse)
switch pushResponse {
case okta.PushResponseWaiting:
w.WriteHeader(http.StatusOK)
Expand Down
7 changes: 4 additions & 3 deletions lib/authenticators/okta/impl.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ func (pa *PasswordAuthenticator) passwordAuthenticate(username string,
}
}

func (pa *PasswordAuthenticator) getValidUserResponse(username string) (*OktaApiPrimaryResponseType, error) {
func (pa *PasswordAuthenticator) GetValidUserResponse(username string) (*OktaApiPrimaryResponseType, error) {
pa.mutex.Lock()
userData, ok := pa.recentAuth[username]
defer pa.mutex.Unlock()
Expand All @@ -138,7 +138,7 @@ func (pa *PasswordAuthenticator) getValidUserResponse(username string) (*OktaApi
}

func (pa *PasswordAuthenticator) validateUserOTP(username string, otpValue int) (bool, error) {
userResponse, err := pa.getValidUserResponse(username)
userResponse, err := pa.GetValidUserResponse(username)
if err != nil {
return false, err
}
Expand Down Expand Up @@ -195,13 +195,14 @@ func (pa *PasswordAuthenticator) validateUserOTP(username string, otpValue int)
}

func (pa *PasswordAuthenticator) validateUserPush(username string) (PushResponse, error) {
userResponse, err := pa.getValidUserResponse(username)
userResponse, err := pa.GetValidUserResponse(username)
if err != nil {
return PushResponseRejected, err
}
if userResponse == nil {
return PushResponseRejected, nil
}
pa.logger.Debugf(2, "oktaAuthenticator: validsteUserPush: after getting userResponse=%+v", userResponse)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

validste?

for _, factor := range userResponse.Embedded.Factor {
if !(factor.FactorType == "push" && factor.VendorName == "OKTA") {
continue
Expand Down
32 changes: 30 additions & 2 deletions lib/client/twofa/pushtoken/pushtoken.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package pushtoken

import (
"bufio"
"crypto/x509"
"encoding/json"
"errors"
"fmt"
Expand All @@ -20,6 +21,11 @@ import (

const vipCheckTimeoutSecs = 180

func debugLogCert(messageSuffix string, cert *x509.Certificate, logger log.DebugLogger) {
logger.Debugf(2, "%s.issuer=%+v", messageSuffix, cert.Issuer)
logger.Debugf(2, "%s.subject=%+v", messageSuffix, cert.Subject)
}

func startGenericPush(client *http.Client,
baseURL string,
pushType string,
Expand All @@ -42,6 +48,14 @@ func startGenericPush(client *http.Client,
return err
}
defer pushStartResp.Body.Close()

if pushStartResp.TLS != nil {
debugLogCert("startGenericPush peeerCerts[0]", pushStartResp.TLS.PeerCertificates[0], logger)
if pushStartResp.TLS.VerifiedChains != nil {
debugLogCert("startGenericPush verifiedcerts[0]", pushStartResp.TLS.VerifiedChains[0][0], logger)
}
}

// since we dont care about content we just consume it all.
io.Copy(ioutil.Discard, pushStartResp.Body)
if pushStartResp.StatusCode != 200 {
Expand Down Expand Up @@ -94,6 +108,7 @@ func doGenericPushCheck(client *http.Client,
baseURL string,
pushType string,
userAgentString string,
codeIsDone chan bool,
logger log.DebugLogger,
errorReturnDuration time.Duration) error {

Expand All @@ -118,7 +133,15 @@ func doGenericPushCheck(client *http.Client,
logger.Printf("") //To do a CR
return nil
}
time.Sleep(2 * time.Second)
select {
case codeSuccess := <-codeIsDone:
if codeSuccess {
return nil
}
continue
case <-time.After(2 * time.Second):
logger.Debugf(1, "doGenericPushCheck: timeout on checkGenericPollStatus loop")
}
}

err = errors.New("Vip Push Checked timeout out")
Expand Down Expand Up @@ -178,7 +201,7 @@ func genericAuthenticateWithToken(
defer loginResp.Body.Close()
if loginResp.StatusCode != 200 {
logger.Printf("got error from login call %s", loginResp.Status)
return err
return fmt.Errorf("Failed to authenticate with token")
}

loginJSONResponse := proto.LoginResponse{}
Expand All @@ -203,14 +226,19 @@ func doGenericTokenPushAuthenticate(

timeout := time.Duration(time.Duration(vipCheckTimeoutSecs) * time.Second)
ch := make(chan error, 1)
doneCh := make(chan bool, 1)
go func() {
err := genericAuthenticateWithToken(client, baseURL, pushType, userAgentString, logger)
if err == nil {
doneCh <- true
}
ch <- err
}()
go func() {
err := doGenericPushCheck(client, baseURL,
pushType,
userAgentString,
doneCh,
logger, timeout)
ch <- err

Expand Down