k3s/vendor/k8s.io/kubernetes/cmd/kubelet/app/auth.go

127 lines
4.5 KiB
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
/*
Copyright 2016 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 app
import (
"errors"
"fmt"
"reflect"
"k8s.io/apimachinery/pkg/types"
"k8s.io/apiserver/pkg/authentication/authenticator"
"k8s.io/apiserver/pkg/authentication/authenticatorfactory"
"k8s.io/apiserver/pkg/authorization/authorizer"
"k8s.io/apiserver/pkg/authorization/authorizerfactory"
2019-12-12 01:27:03 +00:00
"k8s.io/apiserver/pkg/server/dynamiccertificates"
2019-01-12 04:58:27 +00:00
clientset "k8s.io/client-go/kubernetes"
2019-12-12 01:27:03 +00:00
authenticationclient "k8s.io/client-go/kubernetes/typed/authentication/v1"
authorizationclient "k8s.io/client-go/kubernetes/typed/authorization/v1"
2019-01-12 04:58:27 +00:00
kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
"k8s.io/kubernetes/pkg/kubelet/server"
)
// BuildAuth creates an authenticator, an authorizer, and a matching authorizer attributes getter compatible with the kubelet's needs
2020-06-23 22:12:14 +00:00
// It returns AuthInterface, a run method to start internal controllers (like cert reloading) and error.
func BuildAuth(nodeName types.NodeName, client clientset.Interface, config kubeletconfig.KubeletConfiguration) (server.AuthInterface, func(<-chan struct{}), error) {
2019-01-12 04:58:27 +00:00
// Get clients, if provided
var (
tokenClient authenticationclient.TokenReviewInterface
sarClient authorizationclient.SubjectAccessReviewInterface
)
if client != nil && !reflect.ValueOf(client).IsNil() {
2019-12-12 01:27:03 +00:00
tokenClient = client.AuthenticationV1().TokenReviews()
sarClient = client.AuthorizationV1().SubjectAccessReviews()
2019-01-12 04:58:27 +00:00
}
2020-06-23 22:12:14 +00:00
authenticator, runAuthenticatorCAReload, err := BuildAuthn(tokenClient, config.Authentication)
2019-01-12 04:58:27 +00:00
if err != nil {
2020-06-23 22:12:14 +00:00
return nil, nil, err
2019-01-12 04:58:27 +00:00
}
attributes := server.NewNodeAuthorizerAttributesGetter(nodeName)
authorizer, err := BuildAuthz(sarClient, config.Authorization)
if err != nil {
2020-06-23 22:12:14 +00:00
return nil, nil, err
2019-01-12 04:58:27 +00:00
}
2020-06-23 22:12:14 +00:00
return server.NewKubeletAuth(authenticator, attributes, authorizer), runAuthenticatorCAReload, nil
2019-01-12 04:58:27 +00:00
}
// BuildAuthn creates an authenticator compatible with the kubelet's needs
2020-06-23 22:12:14 +00:00
func BuildAuthn(client authenticationclient.TokenReviewInterface, authn kubeletconfig.KubeletAuthentication) (authenticator.Request, func(<-chan struct{}), error) {
var dynamicCAContentFromFile *dynamiccertificates.DynamicFileCAContent
2019-12-12 01:27:03 +00:00
var err error
if len(authn.X509.ClientCAFile) > 0 {
2020-06-23 22:12:14 +00:00
dynamicCAContentFromFile, err = dynamiccertificates.NewDynamicCAContentFromFile("client-ca-bundle", authn.X509.ClientCAFile)
2019-12-12 01:27:03 +00:00
if err != nil {
2020-06-23 22:12:14 +00:00
return nil, nil, err
2019-12-12 01:27:03 +00:00
}
}
2019-01-12 04:58:27 +00:00
authenticatorConfig := authenticatorfactory.DelegatingAuthenticatorConfig{
2019-12-12 01:27:03 +00:00
Anonymous: authn.Anonymous.Enabled,
CacheTTL: authn.Webhook.CacheTTL.Duration,
2020-06-23 22:12:14 +00:00
ClientCertificateCAContentProvider: dynamicCAContentFromFile,
2019-01-12 04:58:27 +00:00
}
if authn.Webhook.Enabled {
if client == nil {
2020-06-23 22:12:14 +00:00
return nil, nil, errors.New("no client provided, cannot use webhook authentication")
2019-01-12 04:58:27 +00:00
}
authenticatorConfig.TokenAccessReviewClient = client
}
2019-08-30 18:33:25 +00:00
authenticator, _, err := authenticatorConfig.New()
2020-06-23 22:12:14 +00:00
if err != nil {
return nil, nil, err
}
return authenticator, func(stopCh <-chan struct{}) {
if dynamicCAContentFromFile != nil {
go dynamicCAContentFromFile.Run(1, stopCh)
}
}, err
2019-01-12 04:58:27 +00:00
}
// BuildAuthz creates an authorizer compatible with the kubelet's needs
func BuildAuthz(client authorizationclient.SubjectAccessReviewInterface, authz kubeletconfig.KubeletAuthorization) (authorizer.Authorizer, error) {
switch authz.Mode {
case kubeletconfig.KubeletAuthorizationModeAlwaysAllow:
return authorizerfactory.NewAlwaysAllowAuthorizer(), nil
case kubeletconfig.KubeletAuthorizationModeWebhook:
if client == nil {
return nil, errors.New("no client provided, cannot use webhook authorization")
}
authorizerConfig := authorizerfactory.DelegatingAuthorizerConfig{
SubjectAccessReviewClient: client,
AllowCacheTTL: authz.Webhook.CacheAuthorizedTTL.Duration,
DenyCacheTTL: authz.Webhook.CacheUnauthorizedTTL.Duration,
}
return authorizerConfig.New()
case "":
2019-09-27 21:51:53 +00:00
return nil, fmt.Errorf("no authorization mode specified")
2019-01-12 04:58:27 +00:00
default:
2019-09-27 21:51:53 +00:00
return nil, fmt.Errorf("unknown authorization mode %s", authz.Mode)
2019-01-12 04:58:27 +00:00
}
}