|
|
|
@ -756,6 +756,8 @@ func (s *Server) handleToken(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
s.handleAuthCode(w, r, client)
|
|
|
|
|
case grantTypeRefreshToken:
|
|
|
|
|
s.handleRefreshToken(w, r, client)
|
|
|
|
|
case grantTypePassword:
|
|
|
|
|
s.handlePasswordGrant(w, r, client)
|
|
|
|
|
default:
|
|
|
|
|
s.tokenErrHelper(w, errInvalidGrant, "", http.StatusBadRequest)
|
|
|
|
|
}
|
|
|
|
@ -1150,6 +1152,251 @@ func (s *Server) handleUserInfo(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
w.Write(claims)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *Server) handlePasswordGrant(w http.ResponseWriter, r *http.Request, client storage.Client) {
|
|
|
|
|
|
|
|
|
|
// Parse the fields
|
|
|
|
|
if err := r.ParseForm(); err != nil {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, "Couldn't parse data", http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
q := r.Form
|
|
|
|
|
|
|
|
|
|
// Get the clientID and secret from basic auth or form variables
|
|
|
|
|
clientID, clientSecret, ok := r.BasicAuth()
|
|
|
|
|
if ok {
|
|
|
|
|
var err error
|
|
|
|
|
if clientID, err = url.QueryUnescape(clientID); err != nil {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, "client_id improperly encoded", http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if clientSecret, err = url.QueryUnescape(clientSecret); err != nil {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, "client_secret improperly encoded", http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
clientID = q.Get("client_id")
|
|
|
|
|
clientSecret = q.Get("client_secret")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nonce := q.Get("nonce")
|
|
|
|
|
// Some clients, like the old go-oidc, provide extra whitespace. Tolerate this.
|
|
|
|
|
scopes := strings.Fields(q.Get("scope"))
|
|
|
|
|
|
|
|
|
|
// Get the client from the database
|
|
|
|
|
client, err := s.storage.GetClient(clientID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
if err == storage.ErrNotFound {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidClient, fmt.Sprintf("Invalid client_id (%q).", clientID), http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
s.tokenErrHelper(w, errInvalidClient, fmt.Sprintf("Failed to get client %v.", err), http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Parse the scopes if they are passed
|
|
|
|
|
var (
|
|
|
|
|
unrecognized []string
|
|
|
|
|
invalidScopes []string
|
|
|
|
|
)
|
|
|
|
|
hasOpenIDScope := false
|
|
|
|
|
for _, scope := range scopes {
|
|
|
|
|
switch scope {
|
|
|
|
|
case scopeOpenID:
|
|
|
|
|
hasOpenIDScope = true
|
|
|
|
|
case scopeOfflineAccess, scopeEmail, scopeProfile, scopeGroups, scopeFederatedID:
|
|
|
|
|
default:
|
|
|
|
|
peerID, ok := parseCrossClientScope(scope)
|
|
|
|
|
if !ok {
|
|
|
|
|
unrecognized = append(unrecognized, scope)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isTrusted, err := s.validateCrossClientTrust(clientID, peerID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidClient, fmt.Sprintf("Error validating cross client trust %v.", err), http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if !isTrusted {
|
|
|
|
|
invalidScopes = append(invalidScopes, scope)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if !hasOpenIDScope {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, `Missing required scope(s) ["openid"].`, http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if len(unrecognized) > 0 {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, fmt.Sprintf("Unrecognized scope(s) %q", unrecognized), http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if len(invalidScopes) > 0 {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, fmt.Sprintf("Client can't request scope(s) %q", invalidScopes), http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Which connector
|
|
|
|
|
connID := s.passwordConnector
|
|
|
|
|
conn, err := s.getConnector(connID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, "Requested connector does not exist.", http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
passwordConnector, ok := conn.Connector.(connector.PasswordConnector)
|
|
|
|
|
if !ok {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, "Requested password connector does not correct type.", http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Login
|
|
|
|
|
username := q.Get("username")
|
|
|
|
|
password := q.Get("password")
|
|
|
|
|
identity, ok, err := passwordConnector.Login(r.Context(), parseScopes(scopes), username, password)
|
|
|
|
|
if err != nil {
|
|
|
|
|
s.tokenErrHelper(w, errInvalidRequest, "Could not login user", http.StatusBadRequest)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if !ok {
|
|
|
|
|
s.tokenErrHelper(w, errAccessDenied, "Invalid username or password", http.StatusUnauthorized)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Build the claims to send the id token
|
|
|
|
|
claims := storage.Claims{
|
|
|
|
|
UserID: identity.UserID,
|
|
|
|
|
Username: identity.Username,
|
|
|
|
|
PreferredUsername: identity.PreferredUsername,
|
|
|
|
|
Email: identity.Email,
|
|
|
|
|
EmailVerified: identity.EmailVerified,
|
|
|
|
|
Groups: identity.Groups,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
accessToken := storage.NewID()
|
|
|
|
|
idToken, expiry, err := s.newIDToken(client.ID, claims, scopes, nonce, accessToken, connID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
s.tokenErrHelper(w, errServerError, fmt.Sprintf("failed to create ID token: %v", err), http.StatusInternalServerError)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reqRefresh := func() bool {
|
|
|
|
|
// Ensure the connector supports refresh tokens.
|
|
|
|
|
//
|
|
|
|
|
// Connectors like `saml` do not implement RefreshConnector.
|
|
|
|
|
_, ok := conn.Connector.(connector.RefreshConnector)
|
|
|
|
|
if !ok {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, scope := range scopes {
|
|
|
|
|
if scope == scopeOfflineAccess {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}()
|
|
|
|
|
var refreshToken string
|
|
|
|
|
if reqRefresh {
|
|
|
|
|
refresh := storage.RefreshToken{
|
|
|
|
|
ID: storage.NewID(),
|
|
|
|
|
Token: storage.NewID(),
|
|
|
|
|
ClientID: clientID,
|
|
|
|
|
ConnectorID: connID,
|
|
|
|
|
Scopes: scopes,
|
|
|
|
|
Claims: claims,
|
|
|
|
|
Nonce: nonce,
|
|
|
|
|
// ConnectorData: authCode.ConnectorData,
|
|
|
|
|
CreatedAt: s.now(),
|
|
|
|
|
LastUsed: s.now(),
|
|
|
|
|
}
|
|
|
|
|
token := &internal.RefreshToken{
|
|
|
|
|
RefreshId: refresh.ID,
|
|
|
|
|
Token: refresh.Token,
|
|
|
|
|
}
|
|
|
|
|
if refreshToken, err = internal.Marshal(token); err != nil {
|
|
|
|
|
s.logger.Errorf("failed to marshal refresh token: %v", err)
|
|
|
|
|
s.tokenErrHelper(w, errServerError, "", http.StatusInternalServerError)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := s.storage.CreateRefresh(refresh); err != nil {
|
|
|
|
|
s.logger.Errorf("failed to create refresh token: %v", err)
|
|
|
|
|
s.tokenErrHelper(w, errServerError, "", http.StatusInternalServerError)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// deleteToken determines if we need to delete the newly created refresh token
|
|
|
|
|
// due to a failure in updating/creating the OfflineSession object for the
|
|
|
|
|
// corresponding user.
|
|
|
|
|
var deleteToken bool
|
|
|
|
|
defer func() {
|
|
|
|
|
if deleteToken {
|
|
|
|
|
// Delete newly created refresh token from storage.
|
|
|
|
|
if err := s.storage.DeleteRefresh(refresh.ID); err != nil {
|
|
|
|
|
s.logger.Errorf("failed to delete refresh token: %v", err)
|
|
|
|
|
s.tokenErrHelper(w, errServerError, "", http.StatusInternalServerError)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
|
|
|
|
|
tokenRef := storage.RefreshTokenRef{
|
|
|
|
|
ID: refresh.ID,
|
|
|
|
|
ClientID: refresh.ClientID,
|
|
|
|
|
CreatedAt: refresh.CreatedAt,
|
|
|
|
|
LastUsed: refresh.LastUsed,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Try to retrieve an existing OfflineSession object for the corresponding user.
|
|
|
|
|
if session, err := s.storage.GetOfflineSessions(refresh.Claims.UserID, refresh.ConnectorID); err != nil {
|
|
|
|
|
if err != storage.ErrNotFound {
|
|
|
|
|
s.logger.Errorf("failed to get offline session: %v", err)
|
|
|
|
|
s.tokenErrHelper(w, errServerError, "", http.StatusInternalServerError)
|
|
|
|
|
deleteToken = true
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
offlineSessions := storage.OfflineSessions{
|
|
|
|
|
UserID: refresh.Claims.UserID,
|
|
|
|
|
ConnID: refresh.ConnectorID,
|
|
|
|
|
Refresh: make(map[string]*storage.RefreshTokenRef),
|
|
|
|
|
}
|
|
|
|
|
offlineSessions.Refresh[tokenRef.ClientID] = &tokenRef
|
|
|
|
|
|
|
|
|
|
// Create a new OfflineSession object for the user and add a reference object for
|
|
|
|
|
// the newly received refreshtoken.
|
|
|
|
|
if err := s.storage.CreateOfflineSessions(offlineSessions); err != nil {
|
|
|
|
|
s.logger.Errorf("failed to create offline session: %v", err)
|
|
|
|
|
s.tokenErrHelper(w, errServerError, "", http.StatusInternalServerError)
|
|
|
|
|
deleteToken = true
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
if oldTokenRef, ok := session.Refresh[tokenRef.ClientID]; ok {
|
|
|
|
|
// Delete old refresh token from storage.
|
|
|
|
|
if err := s.storage.DeleteRefresh(oldTokenRef.ID); err != nil {
|
|
|
|
|
s.logger.Errorf("failed to delete refresh token: %v", err)
|
|
|
|
|
s.tokenErrHelper(w, errServerError, "", http.StatusInternalServerError)
|
|
|
|
|
deleteToken = true
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update existing OfflineSession obj with new RefreshTokenRef.
|
|
|
|
|
if err := s.storage.UpdateOfflineSessions(session.UserID, session.ConnID, func(old storage.OfflineSessions) (storage.OfflineSessions, error) {
|
|
|
|
|
old.Refresh[tokenRef.ClientID] = &tokenRef
|
|
|
|
|
return old, nil
|
|
|
|
|
}); err != nil {
|
|
|
|
|
s.logger.Errorf("failed to update offline session: %v", err)
|
|
|
|
|
s.tokenErrHelper(w, errServerError, "", http.StatusInternalServerError)
|
|
|
|
|
deleteToken = true
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s.writeAccessToken(w, idToken, accessToken, refreshToken, expiry)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (s *Server) writeAccessToken(w http.ResponseWriter, idToken, accessToken, refreshToken string, expiry time.Time) {
|
|
|
|
|
resp := struct {
|
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
|