2016-08-19 14:51:40 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes Authors.
|
|
|
|
|
|
|
|
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 authreq
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"k8s.io/kubernetes/pkg/apis/extensions"
|
2016-11-16 18:24:26 +00:00
|
|
|
|
|
|
|
"k8s.io/ingress/core/pkg/ingress/annotations/parser"
|
2016-12-29 20:02:06 +00:00
|
|
|
ing_errors "k8s.io/ingress/core/pkg/ingress/errors"
|
2016-08-19 14:51:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// external URL that provides the authentication
|
|
|
|
authURL = "ingress.kubernetes.io/auth-url"
|
|
|
|
authMethod = "ingress.kubernetes.io/auth-method"
|
|
|
|
authBody = "ingress.kubernetes.io/auth-send-body"
|
|
|
|
)
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
// External returns external authentication configuration for an Ingress rule
|
|
|
|
type External struct {
|
2016-11-16 18:24:26 +00:00
|
|
|
URL string `json:"url"`
|
|
|
|
Method string `json:"method"`
|
|
|
|
SendBody bool `json:"sendBody"`
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
methods = []string{"GET", "HEAD", "POST", "PUT", "PATCH", "DELETE", "CONNECT", "OPTIONS", "TRACE"}
|
|
|
|
)
|
|
|
|
|
|
|
|
func validMethod(method string) bool {
|
|
|
|
if len(method) == 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, m := range methods {
|
|
|
|
if method == m {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
type authReq struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewParser creates a new authentication request annotation parser
|
|
|
|
func NewParser() parser.IngressAnnotation {
|
|
|
|
return authReq{}
|
|
|
|
}
|
|
|
|
|
2016-08-19 14:51:40 +00:00
|
|
|
// ParseAnnotations parses the annotations contained in the ingress
|
|
|
|
// rule used to use an external URL as source for authentication
|
2016-12-29 20:02:06 +00:00
|
|
|
func (a authReq) Parse(ing *extensions.Ingress) (interface{}, error) {
|
2016-11-10 22:56:29 +00:00
|
|
|
str, err := parser.GetStringAnnotation(authURL, ing)
|
2016-08-19 14:51:40 +00:00
|
|
|
if err != nil {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, err
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
2016-12-29 20:02:06 +00:00
|
|
|
|
2016-08-19 14:51:40 +00:00
|
|
|
if str == "" {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.NewLocationDenied("an empty string is not a valid URL")
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ur, err := url.Parse(str)
|
|
|
|
if err != nil {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, err
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
|
|
|
if ur.Scheme == "" {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.NewLocationDenied("url scheme is empty")
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
|
|
|
if ur.Host == "" {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.NewLocationDenied("url host is empty")
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
if strings.Contains(ur.Host, "..") {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.NewLocationDenied("invalid url host")
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
m, _ := parser.GetStringAnnotation(authMethod, ing)
|
2016-08-19 14:51:40 +00:00
|
|
|
if len(m) != 0 && !validMethod(m) {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.NewLocationDenied("invalid HTTP method")
|
2016-08-19 14:51:40 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
sb, _ := parser.GetBoolAnnotation(authBody, ing)
|
2016-08-19 14:51:40 +00:00
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
return &External{
|
2016-08-19 14:51:40 +00:00
|
|
|
URL: str,
|
|
|
|
Method: m,
|
|
|
|
SendBody: sb,
|
|
|
|
}, nil
|
|
|
|
}
|