mirror of
				https://github.com/minio/minio.git
				synced 2025-11-04 02:01:05 +01:00 
			
		
		
		
	This reverts commit 736d8cbac483d8bf56c3422ca9a9c4c3e043c6cf. Bring contrib files for older contributions
		
			
				
	
	
		
			168 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			168 lines
		
	
	
		
			5.3 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/dgrijalva/jwt-go"
 | 
						|
	jwtreq "github.com/dgrijalva/jwt-go/request"
 | 
						|
	xjwt "github.com/minio/minio/cmd/jwt"
 | 
						|
	"github.com/minio/minio/cmd/logger"
 | 
						|
	"github.com/minio/minio/pkg/auth"
 | 
						|
)
 | 
						|
 | 
						|
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")
 | 
						|
	errChangeCredNotAllowed = errors.New("Changing access key and secret key not allowed")
 | 
						|
	errAuthentication       = errors.New("Authentication failed, check your access credentials")
 | 
						|
	errNoAuthToken          = errors.New("JWT token missing")
 | 
						|
	errIncorrectCreds       = errors.New("Current access key or secret key is incorrect")
 | 
						|
	errPresignedNotAllowed  = errors.New("Unable to generate shareable URL due to lack of read permissions")
 | 
						|
)
 | 
						|
 | 
						|
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
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
func isAuthTokenValid(token string) bool {
 | 
						|
	_, _, err := webTokenAuthenticate(token)
 | 
						|
	return err == nil
 | 
						|
}
 | 
						|
 | 
						|
func webTokenAuthenticate(token string) (*xjwt.MapClaims, bool, error) {
 | 
						|
	if token == "" {
 | 
						|
		return nil, false, errNoAuthToken
 | 
						|
	}
 | 
						|
	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
 | 
						|
}
 | 
						|
 | 
						|
// 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
 | 
						|
}
 |