| 
									
										
										
										
											2015-02-08 18:54:21 +08:00
										 |  |  | /* | 
					
						
							| 
									
										
										
										
											2015-07-25 08:51:40 +08:00
										 |  |  |  * Minio Cloud Storage, (C) 2015 Minio, Inc. | 
					
						
							| 
									
										
										
										
											2015-02-08 18:54:21 +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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-05 07:31:07 +08:00
										 |  |  | package main | 
					
						
							| 
									
										
										
										
											2015-01-29 03:48:26 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"crypto/rand" | 
					
						
							| 
									
										
										
										
											2015-01-29 07:27:59 +08:00
										 |  |  | 	"encoding/base64" | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | 	"regexp" | 
					
						
							| 
									
										
										
										
											2015-08-04 07:17:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-11 08:40:09 +08:00
										 |  |  | 	"github.com/minio/minio/pkg/probe" | 
					
						
							| 
									
										
										
										
											2015-01-29 03:48:26 +08:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | const ( | 
					
						
							|  |  |  | 	minioAccessID = 20 | 
					
						
							|  |  |  | 	minioSecretID = 40 | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // isValidAccessKey - validate access key
 | 
					
						
							|  |  |  | func isValidAccessKey(accessKeyID string) bool { | 
					
						
							|  |  |  | 	if accessKeyID == "" { | 
					
						
							|  |  |  | 		return true | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	regex := regexp.MustCompile("^[A-Z0-9\\-\\.\\_\\~]{20}$") | 
					
						
							|  |  |  | 	return regex.MatchString(accessKeyID) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-22 18:15:20 +08:00
										 |  |  | // isValidSecretKey - validate secret key
 | 
					
						
							|  |  |  | func isValidSecretKey(secretKeyID string) bool { | 
					
						
							| 
									
										
										
										
											2016-03-18 11:00:11 +08:00
										 |  |  | 	regex := regexp.MustCompile("^.{40}$") | 
					
						
							| 
									
										
										
										
											2016-02-22 18:15:20 +08:00
										 |  |  | 	return regex.MatchString(secretKeyID) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-05 14:11:18 +08:00
										 |  |  | // generateAccessKeyID - generate random alpha numeric value using only uppercase characters
 | 
					
						
							| 
									
										
										
										
											2015-02-24 09:44:55 +08:00
										 |  |  | // takes input as size in integer
 | 
					
						
							| 
									
										
										
										
											2015-10-05 14:11:18 +08:00
										 |  |  | func generateAccessKeyID() ([]byte, *probe.Error) { | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | 	alpha := make([]byte, minioAccessID) | 
					
						
							| 
									
										
										
										
											2016-02-05 04:52:25 +08:00
										 |  |  | 	if _, e := rand.Read(alpha); e != nil { | 
					
						
							|  |  |  | 		return nil, probe.NewError(e) | 
					
						
							| 
									
										
										
										
											2015-01-29 03:48:26 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | 	for i := 0; i < minioAccessID; i++ { | 
					
						
							| 
									
										
										
										
											2015-01-29 03:48:26 +08:00
										 |  |  | 		alpha[i] = alphaNumericTable[alpha[i]%byte(len(alphaNumericTable))] | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return alpha, nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-05 14:11:18 +08:00
										 |  |  | // generateSecretAccessKey - generate random base64 numeric value from a random seed.
 | 
					
						
							|  |  |  | func generateSecretAccessKey() ([]byte, *probe.Error) { | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | 	rb := make([]byte, minioSecretID) | 
					
						
							| 
									
										
										
										
											2016-02-05 04:52:25 +08:00
										 |  |  | 	if _, e := rand.Read(rb); e != nil { | 
					
						
							|  |  |  | 		return nil, probe.NewError(e) | 
					
						
							| 
									
										
										
										
											2015-01-29 03:48:26 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | 	return []byte(base64.StdEncoding.EncodeToString(rb))[:minioSecretID], nil | 
					
						
							| 
									
										
										
										
											2015-01-29 03:48:26 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-10-05 14:11:18 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | // mustGenerateAccessKeyID - must generate random alpha numeric value using only uppercase characters
 | 
					
						
							|  |  |  | // takes input as size in integer
 | 
					
						
							|  |  |  | func mustGenerateAccessKeyID() []byte { | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | 	alpha, err := generateAccessKeyID() | 
					
						
							|  |  |  | 	fatalIf(err.Trace(), "Unable to generate accessKeyID.", nil) | 
					
						
							| 
									
										
										
										
											2015-10-05 14:11:18 +08:00
										 |  |  | 	return alpha | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // mustGenerateSecretAccessKey - generate random base64 numeric value from a random seed.
 | 
					
						
							|  |  |  | func mustGenerateSecretAccessKey() []byte { | 
					
						
							| 
									
										
										
										
											2015-10-17 02:26:01 +08:00
										 |  |  | 	secretKey, err := generateSecretAccessKey() | 
					
						
							|  |  |  | 	fatalIf(err.Trace(), "Unable to generate secretAccessKey.", nil) | 
					
						
							|  |  |  | 	return secretKey | 
					
						
							| 
									
										
										
										
											2015-10-05 14:11:18 +08:00
										 |  |  | } |