mirror of
				https://github.com/minio/minio.git
				synced 2025-11-04 10:11:09 +01:00 
			
		
		
		
	jwt-go has been renamed to jwt and has a new home. See https://github.com/dgrijalva/jwt-go/issues/462
		
			
				
	
	
		
			148 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			148 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (c) 2015-2021 MinIO, Inc.
 | 
						|
//
 | 
						|
// This file is part of MinIO Object Storage stack
 | 
						|
//
 | 
						|
// This program is free software: you can redistribute it and/or modify
 | 
						|
// it under the terms of the GNU Affero General Public License as published by
 | 
						|
// the Free Software Foundation, either version 3 of the License, or
 | 
						|
// (at your option) any later version.
 | 
						|
//
 | 
						|
// This program is distributed in the hope that it will be useful
 | 
						|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
// GNU Affero General Public License for more details.
 | 
						|
//
 | 
						|
// You should have received a copy of the GNU Affero General Public License
 | 
						|
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
 | 
						|
package cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"net/http"
 | 
						|
	"time"
 | 
						|
 | 
						|
	jwtgo "github.com/golang-jwt/jwt"
 | 
						|
	jwtreq "github.com/golang-jwt/jwt/request"
 | 
						|
	"github.com/minio/minio/internal/auth"
 | 
						|
	xjwt "github.com/minio/minio/internal/jwt"
 | 
						|
	"github.com/minio/minio/internal/logger"
 | 
						|
)
 | 
						|
 | 
						|
const (
 | 
						|
	jwtAlgorithm = "Bearer"
 | 
						|
 | 
						|
	// Default JWT token for web handlers is one day.
 | 
						|
	defaultJWTExpiry = 24 * time.Hour
 | 
						|
 | 
						|
	// Inter-node JWT token expiry is 15 minutes.
 | 
						|
	defaultInterNodeJWTExpiry = 15 * time.Minute
 | 
						|
 | 
						|
	// URL JWT token expiry is one minute (might be exposed).
 | 
						|
	defaultURLJWTExpiry = time.Minute
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	errInvalidAccessKeyID = errors.New("The access key ID you provided does not exist in our records")
 | 
						|
	errAuthentication     = errors.New("Authentication failed, check your access credentials")
 | 
						|
	errNoAuthToken        = errors.New("JWT token missing")
 | 
						|
)
 | 
						|
 | 
						|
func authenticateJWTUsers(accessKey, secretKey string, expiry time.Duration) (string, error) {
 | 
						|
	passedCredential, err := auth.CreateCredentials(accessKey, secretKey)
 | 
						|
	if err != nil {
 | 
						|
		return "", err
 | 
						|
	}
 | 
						|
	expiresAt := UTCNow().Add(expiry)
 | 
						|
	return authenticateJWTUsersWithCredentials(passedCredential, expiresAt)
 | 
						|
}
 | 
						|
 | 
						|
func authenticateJWTUsersWithCredentials(credentials auth.Credentials, expiresAt time.Time) (string, error) {
 | 
						|
	serverCred := globalActiveCred
 | 
						|
	if serverCred.AccessKey != credentials.AccessKey {
 | 
						|
		var ok bool
 | 
						|
		serverCred, ok = globalIAMSys.GetUser(credentials.AccessKey)
 | 
						|
		if !ok {
 | 
						|
			return "", errInvalidAccessKeyID
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	if !serverCred.Equal(credentials) {
 | 
						|
		return "", errAuthentication
 | 
						|
	}
 | 
						|
 | 
						|
	claims := xjwt.NewMapClaims()
 | 
						|
	claims.SetExpiry(expiresAt)
 | 
						|
	claims.SetAccessKey(credentials.AccessKey)
 | 
						|
 | 
						|
	jwt := jwtgo.NewWithClaims(jwtgo.SigningMethodHS512, claims)
 | 
						|
	return jwt.SignedString([]byte(serverCred.SecretKey))
 | 
						|
}
 | 
						|
 | 
						|
func authenticateNode(accessKey, secretKey, audience string) (string, error) {
 | 
						|
	claims := xjwt.NewStandardClaims()
 | 
						|
	claims.SetExpiry(UTCNow().Add(defaultInterNodeJWTExpiry))
 | 
						|
	claims.SetAccessKey(accessKey)
 | 
						|
	claims.SetAudience(audience)
 | 
						|
 | 
						|
	jwt := jwtgo.NewWithClaims(jwtgo.SigningMethodHS512, claims)
 | 
						|
	return jwt.SignedString([]byte(secretKey))
 | 
						|
}
 | 
						|
 | 
						|
func authenticateWeb(accessKey, secretKey string) (string, error) {
 | 
						|
	return authenticateJWTUsers(accessKey, secretKey, defaultJWTExpiry)
 | 
						|
}
 | 
						|
 | 
						|
func authenticateURL(accessKey, secretKey string) (string, error) {
 | 
						|
	return authenticateJWTUsers(accessKey, secretKey, defaultURLJWTExpiry)
 | 
						|
}
 | 
						|
 | 
						|
// Callback function used for parsing
 | 
						|
func webTokenCallback(claims *xjwt.MapClaims) ([]byte, error) {
 | 
						|
	if claims.AccessKey == globalActiveCred.AccessKey {
 | 
						|
		return []byte(globalActiveCred.SecretKey), nil
 | 
						|
	}
 | 
						|
	ok, _, err := globalIAMSys.IsTempUser(claims.AccessKey)
 | 
						|
	if err != nil {
 | 
						|
		if err == errNoSuchUser {
 | 
						|
			return nil, errInvalidAccessKeyID
 | 
						|
		}
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if ok {
 | 
						|
		return []byte(globalActiveCred.SecretKey), nil
 | 
						|
	}
 | 
						|
	cred, ok := globalIAMSys.GetUser(claims.AccessKey)
 | 
						|
	if !ok {
 | 
						|
		return nil, errInvalidAccessKeyID
 | 
						|
	}
 | 
						|
	return []byte(cred.SecretKey), nil
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
// Check if the request is authenticated.
 | 
						|
// Returns nil if the request is authenticated. errNoAuthToken if token missing.
 | 
						|
// Returns errAuthentication for all other errors.
 | 
						|
func webRequestAuthenticate(req *http.Request) (*xjwt.MapClaims, bool, error) {
 | 
						|
	token, err := jwtreq.AuthorizationHeaderExtractor.ExtractToken(req)
 | 
						|
	if err != nil {
 | 
						|
		if err == jwtreq.ErrNoTokenInRequest {
 | 
						|
			return nil, false, errNoAuthToken
 | 
						|
		}
 | 
						|
		return nil, false, err
 | 
						|
	}
 | 
						|
	claims := xjwt.NewMapClaims()
 | 
						|
	if err := xjwt.ParseWithClaims(token, claims, webTokenCallback); err != nil {
 | 
						|
		return claims, false, errAuthentication
 | 
						|
	}
 | 
						|
	owner := claims.AccessKey == globalActiveCred.AccessKey
 | 
						|
	return claims, owner, nil
 | 
						|
}
 | 
						|
 | 
						|
func newAuthToken(audience string) string {
 | 
						|
	cred := globalActiveCred
 | 
						|
	token, err := authenticateNode(cred.AccessKey, cred.SecretKey, audience)
 | 
						|
	logger.CriticalIf(GlobalContext, err)
 | 
						|
	return token
 | 
						|
}
 |