You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
209 lines
6.3 KiB
209 lines
6.3 KiB
10 years ago
|
/*
|
||
9 years ago
|
* Minio Cloud Storage, (C) 2015 Minio, Inc.
|
||
10 years ago
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
9 years ago
|
package main
|
||
10 years ago
|
|
||
|
import (
|
||
10 years ago
|
"errors"
|
||
10 years ago
|
"net/http"
|
||
10 years ago
|
"time"
|
||
10 years ago
|
|
||
9 years ago
|
"github.com/minio/minio/pkg/auth"
|
||
9 years ago
|
"github.com/rs/cors"
|
||
10 years ago
|
)
|
||
|
|
||
9 years ago
|
// MiddlewareHandler - useful to chain different middleware http.Handler
|
||
9 years ago
|
type MiddlewareHandler func(http.Handler) http.Handler
|
||
|
|
||
10 years ago
|
type contentTypeHandler struct {
|
||
|
handler http.Handler
|
||
|
}
|
||
|
|
||
10 years ago
|
type timeHandler struct {
|
||
|
handler http.Handler
|
||
|
}
|
||
|
|
||
10 years ago
|
type validateAuthHandler struct {
|
||
10 years ago
|
handler http.Handler
|
||
|
}
|
||
|
|
||
10 years ago
|
type resourceHandler struct {
|
||
10 years ago
|
handler http.Handler
|
||
|
}
|
||
|
|
||
10 years ago
|
func parseDate(req *http.Request) (time.Time, error) {
|
||
9 years ago
|
amzDate := req.Header.Get(http.CanonicalHeaderKey("x-amz-date"))
|
||
10 years ago
|
switch {
|
||
|
case amzDate != "":
|
||
|
if _, err := time.Parse(time.RFC1123, amzDate); err == nil {
|
||
|
return time.Parse(time.RFC1123, amzDate)
|
||
|
}
|
||
|
if _, err := time.Parse(time.RFC1123Z, amzDate); err == nil {
|
||
|
return time.Parse(time.RFC1123Z, amzDate)
|
||
|
}
|
||
9 years ago
|
if _, err := time.Parse(iso8601Format, amzDate); err == nil {
|
||
|
return time.Parse(iso8601Format, amzDate)
|
||
10 years ago
|
}
|
||
10 years ago
|
}
|
||
10 years ago
|
date := req.Header.Get("Date")
|
||
|
switch {
|
||
|
case date != "":
|
||
|
if _, err := time.Parse(time.RFC1123, date); err == nil {
|
||
|
return time.Parse(time.RFC1123, date)
|
||
|
}
|
||
|
if _, err := time.Parse(time.RFC1123Z, date); err == nil {
|
||
|
return time.Parse(time.RFC1123Z, date)
|
||
|
}
|
||
9 years ago
|
if _, err := time.Parse(iso8601Format, amzDate); err == nil {
|
||
|
return time.Parse(iso8601Format, amzDate)
|
||
10 years ago
|
}
|
||
10 years ago
|
}
|
||
|
return time.Time{}, errors.New("invalid request")
|
||
|
}
|
||
|
|
||
9 years ago
|
// ValidContentTypeHandler to validate Accept type
|
||
10 years ago
|
func ValidContentTypeHandler(h http.Handler) http.Handler {
|
||
10 years ago
|
return contentTypeHandler{h}
|
||
10 years ago
|
}
|
||
|
|
||
10 years ago
|
func (h contentTypeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||
10 years ago
|
acceptsContentType := getContentType(r)
|
||
|
if acceptsContentType == unknownContentType {
|
||
|
writeErrorResponse(w, r, NotAcceptable, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
|
}
|
||
10 years ago
|
h.handler.ServeHTTP(w, r)
|
||
|
}
|
||
|
|
||
9 years ago
|
// TimeValidityHandler to validate parsable time over http header
|
||
10 years ago
|
func TimeValidityHandler(h http.Handler) http.Handler {
|
||
10 years ago
|
return timeHandler{h}
|
||
|
}
|
||
|
|
||
|
func (h timeHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||
|
acceptsContentType := getContentType(r)
|
||
10 years ago
|
// Verify if date headers are set, if not reject the request
|
||
10 years ago
|
if r.Header.Get("Authorization") != "" {
|
||
9 years ago
|
if r.Header.Get(http.CanonicalHeaderKey("x-amz-date")) == "" && r.Header.Get("Date") == "" {
|
||
10 years ago
|
// there is no way to knowing if this is a valid request, could be a attack reject such clients
|
||
|
writeErrorResponse(w, r, RequestTimeTooSkewed, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
|
}
|
||
10 years ago
|
date, err := parseDate(r)
|
||
10 years ago
|
if err != nil {
|
||
|
// there is no way to knowing if this is a valid request, could be a attack reject such clients
|
||
|
writeErrorResponse(w, r, RequestTimeTooSkewed, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
|
}
|
||
|
duration := time.Since(date)
|
||
|
minutes := time.Duration(5) * time.Minute
|
||
|
if duration.Minutes() > minutes.Minutes() {
|
||
|
writeErrorResponse(w, r, RequestTimeTooSkewed, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
|
}
|
||
10 years ago
|
}
|
||
|
h.handler.ServeHTTP(w, r)
|
||
|
}
|
||
|
|
||
9 years ago
|
// ValidateAuthHeaderHandler - validate auth header handler is wrapper handler used
|
||
|
// for request validation with authorization header. Current authorization layer
|
||
|
// supports S3's standard HMAC based signature request.
|
||
10 years ago
|
func ValidateAuthHeaderHandler(h http.Handler) http.Handler {
|
||
10 years ago
|
return validateAuthHandler{h}
|
||
10 years ago
|
}
|
||
|
|
||
10 years ago
|
// validate auth header handler ServeHTTP() wrapper
|
||
|
func (h validateAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||
10 years ago
|
acceptsContentType := getContentType(r)
|
||
9 years ago
|
accessKeyID, err := stripAccessKeyID(r.Header.Get("Authorization"))
|
||
|
switch err.ToGoError() {
|
||
|
case errInvalidRegion:
|
||
|
writeErrorResponse(w, r, AuthorizationHeaderMalformed, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
|
case errAccessKeyIDInvalid:
|
||
|
writeErrorResponse(w, r, InvalidAccessKeyID, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
10 years ago
|
case nil:
|
||
9 years ago
|
// load auth config
|
||
9 years ago
|
authConfig, err := auth.LoadConfig()
|
||
10 years ago
|
if err != nil {
|
||
|
writeErrorResponse(w, r, InternalError, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
|
}
|
||
9 years ago
|
// Access key not found
|
||
9 years ago
|
for _, user := range authConfig.Users {
|
||
|
if user.AccessKeyID == accessKeyID {
|
||
|
h.handler.ServeHTTP(w, r)
|
||
|
return
|
||
|
}
|
||
10 years ago
|
}
|
||
9 years ago
|
writeErrorResponse(w, r, InvalidAccessKeyID, acceptsContentType, r.URL.Path)
|
||
|
return
|
||
9 years ago
|
// All other errors for now, serve them
|
||
10 years ago
|
default:
|
||
|
// control reaches here, we should just send the request up the stack - internally
|
||
|
// individual calls will validate themselves against un-authenticated requests
|
||
|
h.handler.ServeHTTP(w, r)
|
||
|
}
|
||
10 years ago
|
}
|
||
|
|
||
9 years ago
|
// CorsHandler handler for CORS (Cross Origin Resource Sharing)
|
||
9 years ago
|
func CorsHandler(h http.Handler) http.Handler {
|
||
|
return cors.Default().Handler(h)
|
||
|
}
|
||
|
|
||
10 years ago
|
// IgnoreResourcesHandler -
|
||
10 years ago
|
// Ignore resources handler is wrapper handler used for API request resource validation
|
||
|
// Since we do not support all the S3 queries, it is necessary for us to throw back a
|
||
10 years ago
|
// valid error message indicating such a feature is not implemented.
|
||
10 years ago
|
func IgnoreResourcesHandler(h http.Handler) http.Handler {
|
||
10 years ago
|
return resourceHandler{h}
|
||
10 years ago
|
}
|
||
|
|
||
10 years ago
|
// Resource handler ServeHTTP() wrapper
|
||
10 years ago
|
func (h resourceHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||
10 years ago
|
acceptsContentType := getContentType(r)
|
||
10 years ago
|
if ignoreNotImplementedObjectResources(r) || ignoreNotImplementedBucketResources(r) {
|
||
9 years ago
|
writeErrorResponse(w, r, NotImplemented, acceptsContentType, r.URL.Path)
|
||
10 years ago
|
return
|
||
10 years ago
|
}
|
||
10 years ago
|
h.handler.ServeHTTP(w, r)
|
||
10 years ago
|
}
|
||
|
|
||
|
//// helpers
|
||
|
|
||
10 years ago
|
// Checks requests for not implemented Bucket resources
|
||
|
func ignoreNotImplementedBucketResources(req *http.Request) bool {
|
||
10 years ago
|
q := req.URL.Query()
|
||
|
for name := range q {
|
||
10 years ago
|
if notimplementedBucketResourceNames[name] {
|
||
10 years ago
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
10 years ago
|
// Checks requests for not implemented Object resources
|
||
|
func ignoreNotImplementedObjectResources(req *http.Request) bool {
|
||
10 years ago
|
q := req.URL.Query()
|
||
|
for name := range q {
|
||
10 years ago
|
if notimplementedObjectResourceNames[name] {
|
||
10 years ago
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|