k3s/vendor/k8s.io/kubernetes/pkg/controller/bootstrap/util.go

68 lines
2.2 KiB
Go
Raw Normal View History

2019-08-30 18:33:25 +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 bootstrap
import (
"time"
2020-08-10 17:43:49 +00:00
"k8s.io/klog/v2"
2019-08-30 18:33:25 +00:00
"k8s.io/api/core/v1"
bootstrapapi "k8s.io/cluster-bootstrap/token/api"
2019-09-27 21:51:53 +00:00
bootstrapsecretutil "k8s.io/cluster-bootstrap/util/secrets"
2019-08-30 18:33:25 +00:00
)
func validateSecretForSigning(secret *v1.Secret) (tokenID, tokenSecret string, ok bool) {
2019-09-27 21:51:53 +00:00
nameTokenID, ok := bootstrapsecretutil.ParseName(secret.Name)
2019-08-30 18:33:25 +00:00
if !ok {
klog.V(3).Infof("Invalid secret name: %s. Must be of form %s<secret-id>.", secret.Name, bootstrapapi.BootstrapTokenSecretPrefix)
return "", "", false
}
2019-09-27 21:51:53 +00:00
tokenID = bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenIDKey)
2019-08-30 18:33:25 +00:00
if len(tokenID) == 0 {
klog.V(3).Infof("No %s key in %s/%s Secret", bootstrapapi.BootstrapTokenIDKey, secret.Namespace, secret.Name)
return "", "", false
}
if nameTokenID != tokenID {
klog.V(3).Infof("Token ID (%s) doesn't match secret name: %s", tokenID, nameTokenID)
return "", "", false
}
2019-09-27 21:51:53 +00:00
tokenSecret = bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenSecretKey)
2019-08-30 18:33:25 +00:00
if len(tokenSecret) == 0 {
klog.V(3).Infof("No %s key in %s/%s Secret", bootstrapapi.BootstrapTokenSecretKey, secret.Namespace, secret.Name)
return "", "", false
}
// Ensure this secret hasn't expired. The TokenCleaner should remove this
// but if that isn't working or it hasn't gotten there yet we should check
// here.
2019-09-27 21:51:53 +00:00
if bootstrapsecretutil.HasExpired(secret, time.Now()) {
2019-08-30 18:33:25 +00:00
return "", "", false
}
// Make sure this secret can be used for signing
2019-09-27 21:51:53 +00:00
okToSign := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenUsageSigningKey)
2019-08-30 18:33:25 +00:00
if okToSign != "true" {
return "", "", false
}
return tokenID, tokenSecret, true
}