2015-07-09 17:42:04 -04:00
|
|
|
/*
|
2015-07-24 20:51:40 -04:00
|
|
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
2015-07-09 17:42:04 -04: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 api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/minio/minio/pkg/auth"
|
|
|
|
"github.com/minio/minio/pkg/donut"
|
2015-08-03 19:17:21 -04:00
|
|
|
"github.com/minio/minio/pkg/probe"
|
2015-07-09 17:42:04 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
authHeaderPrefix = "AWS4-HMAC-SHA256"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StripAccessKeyID - strip only access key id from auth header
|
|
|
|
func StripAccessKeyID(ah string) (string, error) {
|
|
|
|
if ah == "" {
|
|
|
|
return "", errors.New("Missing auth header")
|
|
|
|
}
|
2015-07-10 00:44:24 -04:00
|
|
|
authFields := strings.Split(strings.TrimSpace(ah), ",")
|
2015-07-09 17:42:04 -04:00
|
|
|
if len(authFields) != 3 {
|
|
|
|
return "", errors.New("Missing fields in Auth header")
|
|
|
|
}
|
|
|
|
authPrefixFields := strings.Fields(authFields[0])
|
|
|
|
if len(authPrefixFields) != 2 {
|
|
|
|
return "", errors.New("Missing fields in Auth header")
|
|
|
|
}
|
|
|
|
if authPrefixFields[0] != authHeaderPrefix {
|
|
|
|
return "", errors.New("Missing fields is Auth header")
|
|
|
|
}
|
2015-07-10 00:44:24 -04:00
|
|
|
credentials := strings.Split(strings.TrimSpace(authPrefixFields[1]), "=")
|
2015-07-09 17:42:04 -04:00
|
|
|
if len(credentials) != 2 {
|
|
|
|
return "", errors.New("Missing fields in Auth header")
|
|
|
|
}
|
2015-07-10 00:44:24 -04:00
|
|
|
if len(strings.Split(strings.TrimSpace(authFields[1]), "=")) != 2 {
|
2015-07-09 17:42:04 -04:00
|
|
|
return "", errors.New("Missing fields in Auth header")
|
|
|
|
}
|
2015-07-10 00:44:24 -04:00
|
|
|
if len(strings.Split(strings.TrimSpace(authFields[2]), "=")) != 2 {
|
2015-07-09 17:42:04 -04:00
|
|
|
return "", errors.New("Missing fields in Auth header")
|
|
|
|
}
|
2015-07-10 00:44:24 -04:00
|
|
|
accessKeyID := strings.Split(strings.TrimSpace(credentials[1]), "/")[0]
|
2015-07-09 17:42:04 -04:00
|
|
|
if !auth.IsValidAccessKey(accessKeyID) {
|
|
|
|
return "", errors.New("Invalid access key")
|
|
|
|
}
|
|
|
|
return accessKeyID, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// InitSignatureV4 initializing signature verification
|
2015-08-03 19:17:21 -04:00
|
|
|
func InitSignatureV4(req *http.Request) (*donut.Signature, *probe.Error) {
|
2015-07-09 17:42:04 -04:00
|
|
|
// strip auth from authorization header
|
|
|
|
ah := req.Header.Get("Authorization")
|
2015-08-03 19:17:21 -04:00
|
|
|
var accessKeyID string
|
|
|
|
{
|
|
|
|
var err error
|
|
|
|
accessKeyID, err = StripAccessKeyID(ah)
|
|
|
|
if err != nil {
|
2015-08-08 02:47:22 -04:00
|
|
|
return nil, probe.NewError(err)
|
2015-08-03 19:17:21 -04:00
|
|
|
}
|
2015-07-09 17:42:04 -04:00
|
|
|
}
|
|
|
|
authConfig, err := auth.LoadConfig()
|
2015-08-03 19:17:21 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err.Trace()
|
|
|
|
}
|
2015-07-09 17:42:04 -04:00
|
|
|
if _, ok := authConfig.Users[accessKeyID]; !ok {
|
2015-08-08 02:47:22 -04:00
|
|
|
return nil, probe.NewError(errors.New("AccessID not found"))
|
2015-07-09 17:42:04 -04:00
|
|
|
}
|
|
|
|
signature := &donut.Signature{
|
|
|
|
AccessKeyID: authConfig.Users[accessKeyID].AccessKeyID,
|
|
|
|
SecretAccessKey: authConfig.Users[accessKeyID].SecretAccessKey,
|
|
|
|
AuthHeader: ah,
|
|
|
|
Request: req,
|
|
|
|
}
|
|
|
|
return signature, nil
|
|
|
|
}
|