| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  |  * MinIO Cloud Storage, (C) 2018, 2019 MinIO, Inc. | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package cmd | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	"context" | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gorilla/mux" | 
					
						
							|  |  |  | 	"github.com/minio/minio/cmd/logger" | 
					
						
							|  |  |  | 	"github.com/minio/minio/pkg/auth" | 
					
						
							|  |  |  | 	"github.com/minio/minio/pkg/iam/validator" | 
					
						
							| 
									
										
										
										
											2019-04-24 06:55:41 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/wildcard" | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	// STS API version.
 | 
					
						
							|  |  |  | 	stsAPIVersion = "2011-06-15" | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// STS API action constants
 | 
					
						
							|  |  |  | 	clientGrants = "AssumeRoleWithClientGrants" | 
					
						
							|  |  |  | 	webIdentity  = "AssumeRoleWithWebIdentity" | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	assumeRole   = "AssumeRole" | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // stsAPIHandlers implements and provides http handlers for AWS STS API.
 | 
					
						
							|  |  |  | type stsAPIHandlers struct{} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // registerSTSRouter - registers AWS STS compatible APIs.
 | 
					
						
							|  |  |  | func registerSTSRouter(router *mux.Router) { | 
					
						
							|  |  |  | 	// Initialize STS.
 | 
					
						
							|  |  |  | 	sts := &stsAPIHandlers{} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// STS Router
 | 
					
						
							|  |  |  | 	stsRouter := router.NewRoute().PathPrefix("/").Subrouter() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	// Assume roles with no JWT, handles AssumeRole.
 | 
					
						
							| 
									
										
										
										
											2019-04-24 06:55:41 +08:00
										 |  |  | 	stsRouter.Methods("POST").MatcherFunc(func(r *http.Request, rm *mux.RouteMatch) bool { | 
					
						
							|  |  |  | 		ctypeOk := wildcard.MatchSimple("application/x-www-form-urlencoded*", r.Header.Get("Content-Type")) | 
					
						
							|  |  |  | 		authOk := wildcard.MatchSimple("AWS4-HMAC-SHA256*", r.Header.Get("Authorization")) | 
					
						
							|  |  |  | 		noQueries := len(r.URL.Query()) == 0 | 
					
						
							|  |  |  | 		return ctypeOk && authOk && noQueries | 
					
						
							|  |  |  | 	}).HandlerFunc(httpTraceAll(sts.AssumeRole)) | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	// Assume roles with JWT handler, handles both ClientGrants and WebIdentity.
 | 
					
						
							| 
									
										
										
										
											2019-04-24 06:55:41 +08:00
										 |  |  | 	stsRouter.Methods("POST").MatcherFunc(func(r *http.Request, rm *mux.RouteMatch) bool { | 
					
						
							|  |  |  | 		ctypeOk := wildcard.MatchSimple("application/x-www-form-urlencoded*", r.Header.Get("Content-Type")) | 
					
						
							|  |  |  | 		noQueries := len(r.URL.Query()) == 0 | 
					
						
							|  |  |  | 		return ctypeOk && noQueries | 
					
						
							|  |  |  | 	}).HandlerFunc(httpTraceAll(sts.AssumeRoleWithJWT)) | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	// AssumeRoleWithClientGrants
 | 
					
						
							|  |  |  | 	stsRouter.Methods("POST").HandlerFunc(httpTraceAll(sts.AssumeRoleWithClientGrants)). | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 		Queries("Action", clientGrants). | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 		Queries("Version", stsAPIVersion). | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		Queries("Token", "{Token:.*}") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 	// AssumeRoleWithWebIdentity
 | 
					
						
							|  |  |  | 	stsRouter.Methods("POST").HandlerFunc(httpTraceAll(sts.AssumeRoleWithWebIdentity)). | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 		Queries("Action", webIdentity). | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 		Queries("Version", stsAPIVersion). | 
					
						
							|  |  |  | 		Queries("WebIdentityToken", "{Token:.*}") | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | func checkAssumeRoleAuth(ctx context.Context, r *http.Request) (user auth.Credentials, stsErr STSErrorCode) { | 
					
						
							|  |  |  | 	switch getRequestAuthType(r) { | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return user, ErrSTSAccessDenied | 
					
						
							|  |  |  | 	case authTypeSigned: | 
					
						
							|  |  |  | 		s3Err := isReqAuthenticated(ctx, r, globalServerConfig.GetRegion(), serviceSTS) | 
					
						
							|  |  |  | 		if STSErrorCode(s3Err) != ErrSTSNone { | 
					
						
							|  |  |  | 			return user, STSErrorCode(s3Err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		var owner bool | 
					
						
							|  |  |  | 		user, owner, s3Err = getReqAccessKeyV4(r, globalServerConfig.GetRegion(), serviceSTS) | 
					
						
							|  |  |  | 		if STSErrorCode(s3Err) != ErrSTSNone { | 
					
						
							|  |  |  | 			return user, STSErrorCode(s3Err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// Root credentials are not allowed to use STS API
 | 
					
						
							|  |  |  | 		if owner { | 
					
						
							|  |  |  | 			return user, ErrSTSAccessDenied | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Session tokens are not allowed in STS AssumeRole requests.
 | 
					
						
							|  |  |  | 	if getSessionToken(r) != "" { | 
					
						
							|  |  |  | 		return user, ErrSTSAccessDenied | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return user, ErrSTSNone | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // AssumeRole - implementation of AWS STS API AssumeRole to get temporary
 | 
					
						
							|  |  |  | // credentials for regular users on Minio.
 | 
					
						
							|  |  |  | // https://docs.aws.amazon.com/STS/latest/APIReference/API_AssumeRole.html
 | 
					
						
							|  |  |  | func (sts *stsAPIHandlers) AssumeRole(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	ctx := newContext(r, w, "AssumeRole") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	user, stsErr := checkAssumeRoleAuth(ctx, r) | 
					
						
							|  |  |  | 	if stsErr != ErrSTSNone { | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(stsErr)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if err := r.ParseForm(); err != nil { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if r.Form.Get("Policy") != "" { | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if r.Form.Get("Version") != stsAPIVersion { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, fmt.Errorf("Invalid STS API version %s, expecting %s", r.Form.Get("Version"), stsAPIVersion)) | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSMissingParameter)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	action := r.Form.Get("Action") | 
					
						
							|  |  |  | 	switch action { | 
					
						
							|  |  |  | 	case assumeRole: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		logger.LogIf(ctx, fmt.Errorf("Unsupported action %s", action)) | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ctx = newContext(r, w, action) | 
					
						
							|  |  |  | 	defer logger.AuditLog(w, r, action, nil) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var err error | 
					
						
							|  |  |  | 	m := make(map[string]interface{}) | 
					
						
							|  |  |  | 	m["exp"], err = validator.GetDefaultExpiration(r.Form.Get("DurationSeconds")) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		switch err { | 
					
						
							|  |  |  | 		case validator.ErrInvalidDuration: | 
					
						
							|  |  |  | 			writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 			writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	policyName, err := globalIAMSys.GetUserPolicy(user.AccessKey) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// This policy is the policy associated with the user
 | 
					
						
							|  |  |  | 	// requesting for temporary credentials. The temporary
 | 
					
						
							|  |  |  | 	// credentials will inherit the same policy requirements.
 | 
					
						
							|  |  |  | 	m["policy"] = policyName | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	secret := globalServerConfig.GetCredential().SecretKey | 
					
						
							|  |  |  | 	cred, err := auth.GetNewCredentialsWithMetadata(m, secret) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInternalError)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Set the newly generated credentials.
 | 
					
						
							|  |  |  | 	if err = globalIAMSys.SetTempUser(cred.AccessKey, cred, policyName); err != nil { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInternalError)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  | 	// Notify all other MinIO peers to reload temp users
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	for _, nerr := range globalNotificationSys.LoadUsers() { | 
					
						
							|  |  |  | 		if nerr.Err != nil { | 
					
						
							|  |  |  | 			logger.GetReqInfo(ctx).SetTags("peerAddress", nerr.Host.String()) | 
					
						
							|  |  |  | 			logger.LogIf(ctx, nerr.Err) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	assumeRoleResponse := &AssumeRoleResponse{ | 
					
						
							|  |  |  | 		Result: AssumeRoleResult{ | 
					
						
							|  |  |  | 			Credentials: cred, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	assumeRoleResponse.ResponseMetadata.RequestID = w.Header().Get(responseRequestIDKey) | 
					
						
							|  |  |  | 	writeSuccessResponseXML(w, encodeResponse(assumeRoleResponse)) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | func (sts *stsAPIHandlers) AssumeRoleWithJWT(w http.ResponseWriter, r *http.Request) { | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	ctx := newContext(r, w, "AssumeRoleJWTCommon") | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	// Parse the incoming form data.
 | 
					
						
							|  |  |  | 	if err := r.ParseForm(); err != nil { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 	if r.Form.Get("Policy") != "" { | 
					
						
							|  |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	if r.Form.Get("Version") != stsAPIVersion { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, fmt.Errorf("Invalid STS API version %s, expecting %s", r.Form.Get("Version"), stsAPIVersion)) | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSMissingParameter)) | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	action := r.Form.Get("Action") | 
					
						
							|  |  |  | 	switch action { | 
					
						
							|  |  |  | 	case clientGrants, webIdentity: | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		logger.LogIf(ctx, fmt.Errorf("Unsupported action %s", action)) | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	ctx = newContext(r, w, action) | 
					
						
							|  |  |  | 	defer logger.AuditLog(w, r, action, nil) | 
					
						
							| 
									
										
										
										
											2018-11-22 12:03:24 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	if globalIAMValidators == nil { | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSNotInitialized)) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	v, err := globalIAMValidators.Get("jwt") | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	token := r.Form.Get("Token") | 
					
						
							|  |  |  | 	if token == "" { | 
					
						
							|  |  |  | 		token = r.Form.Get("WebIdentityToken") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m, err := v.Validate(token, r.Form.Get("DurationSeconds")) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		switch err { | 
					
						
							|  |  |  | 		case validator.ErrTokenExpired: | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 			switch action { | 
					
						
							|  |  |  | 			case clientGrants: | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 				writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSClientGrantsExpiredToken)) | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 			case webIdentity: | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 				writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSWebIdentityExpiredToken)) | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			return | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		case validator.ErrInvalidDuration: | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 			writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 			return | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInvalidParameterValue)) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	secret := globalServerConfig.GetCredential().SecretKey | 
					
						
							|  |  |  | 	cred, err := auth.GetNewCredentialsWithMetadata(m, secret) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInternalError)) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-30 02:08:59 +08:00
										 |  |  | 	// JWT has requested a custom claim with policy value set.
 | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  | 	// This is a MinIO STS API specific value, this value should
 | 
					
						
							| 
									
										
										
										
											2018-10-30 02:08:59 +08:00
										 |  |  | 	// be set and configured on your identity provider as part of
 | 
					
						
							|  |  |  | 	// JWT custom claims.
 | 
					
						
							|  |  |  | 	var policyName string | 
					
						
							|  |  |  | 	if v, ok := m["policy"]; ok { | 
					
						
							|  |  |  | 		policyName, _ = v.(string) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 	var subFromToken string | 
					
						
							|  |  |  | 	if v, ok := m["sub"]; ok { | 
					
						
							|  |  |  | 		subFromToken, _ = v.(string) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 	// Set the newly generated credentials.
 | 
					
						
							| 
									
										
										
										
											2018-10-30 02:08:59 +08:00
										 |  |  | 	if err = globalIAMSys.SetTempUser(cred.AccessKey, cred, policyName); err != nil { | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		logger.LogIf(ctx, err) | 
					
						
							| 
									
										
										
										
											2019-02-15 09:54:33 +08:00
										 |  |  | 		writeSTSErrorResponse(w, stsErrCodes.ToSTSErr(ErrSTSInternalError)) | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-10 02:39:42 +08:00
										 |  |  | 	// Notify all other MinIO peers to reload temp users
 | 
					
						
							| 
									
										
										
										
											2019-01-14 14:44:20 +08:00
										 |  |  | 	for _, nerr := range globalNotificationSys.LoadUsers() { | 
					
						
							|  |  |  | 		if nerr.Err != nil { | 
					
						
							|  |  |  | 			logger.GetReqInfo(ctx).SetTags("peerAddress", nerr.Host.String()) | 
					
						
							|  |  |  | 			logger.LogIf(ctx, nerr.Err) | 
					
						
							| 
									
										
										
										
											2019-01-05 05:48:12 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	var encodedSuccessResponse []byte | 
					
						
							|  |  |  | 	switch action { | 
					
						
							|  |  |  | 	case clientGrants: | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		clientGrantsResponse := &AssumeRoleWithClientGrantsResponse{ | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 			Result: ClientGrantsResult{ | 
					
						
							|  |  |  | 				Credentials:      cred, | 
					
						
							|  |  |  | 				SubjectFromToken: subFromToken, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		clientGrantsResponse.ResponseMetadata.RequestID = w.Header().Get(responseRequestIDKey) | 
					
						
							|  |  |  | 		encodedSuccessResponse = encodeResponse(clientGrantsResponse) | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	case webIdentity: | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		webIdentityResponse := &AssumeRoleWithWebIdentityResponse{ | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 			Result: WebIdentityResult{ | 
					
						
							|  |  |  | 				Credentials:                 cred, | 
					
						
							|  |  |  | 				SubjectFromWebIdentityToken: subFromToken, | 
					
						
							|  |  |  | 			}, | 
					
						
							| 
									
										
										
										
											2019-02-28 09:46:55 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		webIdentityResponse.ResponseMetadata.RequestID = w.Header().Get(responseRequestIDKey) | 
					
						
							|  |  |  | 		encodedSuccessResponse = encodeResponse(webIdentityResponse) | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-10-10 05:00:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	writeSuccessResponseXML(w, encodedSuccessResponse) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-02-06 07:47:11 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // AssumeRoleWithWebIdentity - implementation of AWS STS API supporting OAuth2.0
 | 
					
						
							|  |  |  | // users from web identity provider such as Facebook, Google, or any OpenID
 | 
					
						
							|  |  |  | // Connect-compatible identity provider.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Eg:-
 | 
					
						
							|  |  |  | //    $ curl https://minio:9000/?Action=AssumeRoleWithWebIdentity&WebIdentityToken=<jwt>
 | 
					
						
							|  |  |  | func (sts *stsAPIHandlers) AssumeRoleWithWebIdentity(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	sts.AssumeRoleWithJWT(w, r) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // AssumeRoleWithClientGrants - implementation of AWS STS extension API supporting
 | 
					
						
							|  |  |  | // OAuth2.0 client credential grants.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Eg:-
 | 
					
						
							|  |  |  | //    $ curl https://minio:9000/?Action=AssumeRoleWithClientGrants&Token=<jwt>
 | 
					
						
							|  |  |  | func (sts *stsAPIHandlers) AssumeRoleWithClientGrants(w http.ResponseWriter, r *http.Request) { | 
					
						
							|  |  |  | 	sts.AssumeRoleWithJWT(w, r) | 
					
						
							|  |  |  | } |