2016-05-10 03:14:47 +00:00
|
|
|
/*
|
2016-09-08 11:02:39 +00:00
|
|
|
Copyright 2015 The Kubernetes Authors.
|
2016-05-10 03:14:47 +00: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 auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2016-05-11 05:22:17 +00:00
|
|
|
"os"
|
2017-02-15 19:29:27 +00:00
|
|
|
"path"
|
2016-05-11 05:22:17 +00:00
|
|
|
"regexp"
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
"github.com/pkg/errors"
|
2017-07-16 19:19:59 +00:00
|
|
|
api "k8s.io/api/core/v1"
|
|
|
|
extensions "k8s.io/api/extensions/v1beta1"
|
2016-11-16 18:24:26 +00:00
|
|
|
|
2017-10-06 20:33:32 +00:00
|
|
|
"k8s.io/ingress-nginx/pkg/file"
|
|
|
|
"k8s.io/ingress-nginx/pkg/ingress/annotations/parser"
|
|
|
|
ing_errors "k8s.io/ingress-nginx/pkg/ingress/errors"
|
|
|
|
"k8s.io/ingress-nginx/pkg/ingress/resolver"
|
2016-05-10 03:14:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-05-31 16:22:04 +00:00
|
|
|
authType = "ingress.kubernetes.io/auth-type"
|
|
|
|
authSecret = "ingress.kubernetes.io/auth-secret"
|
|
|
|
authRealm = "ingress.kubernetes.io/auth-realm"
|
2016-05-10 03:14:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2016-05-11 05:22:17 +00:00
|
|
|
authTypeRegex = regexp.MustCompile(`basic|digest`)
|
2016-12-29 20:02:06 +00:00
|
|
|
// AuthDirectory default directory used to store files
|
|
|
|
// to authenticate request
|
|
|
|
AuthDirectory = "/etc/ingress-controller/auth"
|
2016-05-31 16:22:04 +00:00
|
|
|
)
|
2016-05-11 05:22:17 +00:00
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
// BasicDigest returns authentication configuration for an Ingress rule
|
|
|
|
type BasicDigest struct {
|
2016-11-16 18:24:26 +00:00
|
|
|
Type string `json:"type"`
|
|
|
|
Realm string `json:"realm"`
|
|
|
|
File string `json:"file"`
|
|
|
|
Secured bool `json:"secured"`
|
2017-07-31 18:22:10 +00:00
|
|
|
FileSHA string `json:"fileSha"`
|
2016-05-10 03:14:47 +00:00
|
|
|
}
|
|
|
|
|
2017-07-27 03:07:59 +00:00
|
|
|
// Equal tests for equality between two BasicDigest types
|
2017-06-14 21:33:12 +00:00
|
|
|
func (bd1 *BasicDigest) Equal(bd2 *BasicDigest) bool {
|
|
|
|
if bd1 == bd2 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if bd1 == nil || bd2 == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if bd1.Type != bd2.Type {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if bd1.Realm != bd2.Realm {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if bd1.File != bd2.File {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if bd1.Secured != bd2.Secured {
|
|
|
|
return false
|
|
|
|
}
|
2017-07-31 18:22:10 +00:00
|
|
|
if bd1.FileSHA != bd2.FileSHA {
|
|
|
|
return false
|
|
|
|
}
|
2017-06-14 21:33:12 +00:00
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
type auth struct {
|
|
|
|
secretResolver resolver.Secret
|
|
|
|
authDirectory string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewParser creates a new authentication annotation parser
|
|
|
|
func NewParser(authDirectory string, sr resolver.Secret) parser.IngressAnnotation {
|
2017-02-15 19:29:27 +00:00
|
|
|
os.MkdirAll(authDirectory, 0755)
|
|
|
|
|
|
|
|
currPath := authDirectory
|
|
|
|
for currPath != "/" {
|
|
|
|
currPath = path.Dir(currPath)
|
|
|
|
err := os.Chmod(currPath, 0755)
|
|
|
|
if err != nil {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
return auth{sr, authDirectory}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse parses the annotations contained in the ingress
|
2016-05-11 05:22:17 +00:00
|
|
|
// rule used to add authentication in the paths defined in the rule
|
2016-05-10 03:14:47 +00:00
|
|
|
// and generated an htpasswd compatible file to be used as source
|
|
|
|
// during the authentication process
|
2016-12-29 20:02:06 +00:00
|
|
|
func (a auth) Parse(ing *extensions.Ingress) (interface{}, error) {
|
2016-11-10 22:56:29 +00:00
|
|
|
at, err := parser.GetStringAnnotation(authType, ing)
|
2016-05-10 03:14:47 +00:00
|
|
|
if err != nil {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, err
|
2016-11-10 22:56:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !authTypeRegex.MatchString(at) {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.NewLocationDenied("invalid authentication type")
|
2016-05-10 03:14:47 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
s, err := parser.GetStringAnnotation(authSecret, ing)
|
2016-05-10 03:14:47 +00:00
|
|
|
if err != nil {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.LocationDenied{
|
|
|
|
Reason: errors.Wrap(err, "error reading secret name from annotation"),
|
|
|
|
}
|
2016-05-10 03:14:47 +00:00
|
|
|
}
|
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
name := fmt.Sprintf("%v/%v", ing.Namespace, s)
|
|
|
|
secret, err := a.secretResolver.GetSecret(name)
|
2016-05-10 03:14:47 +00:00
|
|
|
if err != nil {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, ing_errors.LocationDenied{
|
|
|
|
Reason: errors.Wrapf(err, "unexpected error reading secret %v", name),
|
|
|
|
}
|
2016-05-10 03:14:47 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
realm, _ := parser.GetStringAnnotation(authRealm, ing)
|
2016-05-10 03:14:47 +00:00
|
|
|
|
2016-12-29 20:02:06 +00:00
|
|
|
passFile := fmt.Sprintf("%v/%v-%v.passwd", a.authDirectory, ing.GetNamespace(), ing.GetName())
|
2016-05-11 05:22:17 +00:00
|
|
|
err = dumpSecret(passFile, secret)
|
2016-05-10 03:14:47 +00:00
|
|
|
if err != nil {
|
2016-12-29 20:02:06 +00:00
|
|
|
return nil, err
|
2016-05-10 03:14:47 +00:00
|
|
|
}
|
|
|
|
|
2016-11-10 22:56:29 +00:00
|
|
|
return &BasicDigest{
|
2016-05-11 05:22:17 +00:00
|
|
|
Type: at,
|
|
|
|
Realm: realm,
|
|
|
|
File: passFile,
|
|
|
|
Secured: true,
|
2017-07-31 18:22:10 +00:00
|
|
|
FileSHA: file.SHA1(passFile),
|
2016-05-11 05:22:17 +00:00
|
|
|
}, nil
|
2016-05-10 03:14:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// dumpSecret dumps the content of a secret into a file
|
|
|
|
// in the expected format for the specified authorization
|
2016-05-11 05:22:17 +00:00
|
|
|
func dumpSecret(filename string, secret *api.Secret) error {
|
|
|
|
val, ok := secret.Data["auth"]
|
|
|
|
if !ok {
|
2016-12-29 20:02:06 +00:00
|
|
|
return ing_errors.LocationDenied{
|
2017-04-03 10:22:08 +00:00
|
|
|
Reason: errors.Errorf("the secret %v does not contain a key with value auth", secret.Name),
|
2016-12-29 20:02:06 +00:00
|
|
|
}
|
2016-05-11 05:22:17 +00:00
|
|
|
}
|
2016-05-10 03:14:47 +00:00
|
|
|
|
2016-05-11 05:22:17 +00:00
|
|
|
// TODO: check permissions required
|
2016-12-29 20:02:06 +00:00
|
|
|
err := ioutil.WriteFile(filename, val, 0777)
|
|
|
|
if err != nil {
|
|
|
|
return ing_errors.LocationDenied{
|
|
|
|
Reason: errors.Wrap(err, "unexpected error creating password file"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2016-05-10 03:14:47 +00:00
|
|
|
}
|