2021-01-13 01:27:41 +00:00
|
|
|
// Copyright 2021 the Pinniped contributors. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package groupsuffix
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-02-05 01:02:59 +00:00
|
|
|
"fmt"
|
2021-01-13 01:27:41 +00:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
2021-02-05 17:56:05 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/errors"
|
2021-01-13 01:27:41 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/validation"
|
|
|
|
|
2021-02-16 19:00:08 +00:00
|
|
|
loginv1alpha1 "go.pinniped.dev/generated/latest/apis/concierge/login/v1alpha1"
|
2021-01-13 01:27:41 +00:00
|
|
|
"go.pinniped.dev/internal/constable"
|
|
|
|
"go.pinniped.dev/internal/kubeclient"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2021-02-19 18:21:10 +00:00
|
|
|
PinnipedDefaultSuffix = "pinniped.dev"
|
2021-01-13 01:27:41 +00:00
|
|
|
pinnipedDefaultSuffixWithDot = ".pinniped.dev"
|
|
|
|
)
|
|
|
|
|
|
|
|
func New(apiGroupSuffix string) kubeclient.Middleware {
|
|
|
|
// return a no-op middleware by default
|
2021-02-19 18:21:10 +00:00
|
|
|
if len(apiGroupSuffix) == 0 || apiGroupSuffix == PinnipedDefaultSuffix {
|
2021-01-13 01:27:41 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return kubeclient.Middlewares{
|
|
|
|
kubeclient.MiddlewareFunc(func(_ context.Context, rt kubeclient.RoundTrip) {
|
|
|
|
group := rt.Resource().Group
|
|
|
|
newGroup, ok := Replace(group, apiGroupSuffix)
|
|
|
|
if !ok {
|
|
|
|
return // ignore APIs that do not have our group
|
|
|
|
}
|
|
|
|
|
2021-02-05 01:02:59 +00:00
|
|
|
rt.MutateRequest(func(obj kubeclient.Object) error {
|
2021-01-13 01:27:41 +00:00
|
|
|
typeMeta := obj.GetObjectKind()
|
|
|
|
origGVK := typeMeta.GroupVersionKind()
|
|
|
|
newGVK := schema.GroupVersionKind{
|
|
|
|
Group: newGroup,
|
|
|
|
Version: origGVK.Version,
|
|
|
|
Kind: origGVK.Kind,
|
|
|
|
}
|
|
|
|
typeMeta.SetGroupVersionKind(newGVK)
|
2021-02-05 01:02:59 +00:00
|
|
|
return nil
|
2021-01-13 01:27:41 +00:00
|
|
|
})
|
|
|
|
}),
|
|
|
|
|
|
|
|
kubeclient.MiddlewareFunc(func(_ context.Context, rt kubeclient.RoundTrip) {
|
|
|
|
// we should not mess with owner refs on things we did not create
|
|
|
|
if rt.Verb() != kubeclient.VerbCreate {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// we probably do not want mess with an owner ref on a subresource
|
|
|
|
if len(rt.Subresource()) != 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
rt.MutateRequest(mutateOwnerRefs(Replace, apiGroupSuffix))
|
|
|
|
}),
|
|
|
|
|
2021-02-05 01:02:59 +00:00
|
|
|
kubeclient.MiddlewareFunc(func(_ context.Context, rt kubeclient.RoundTrip) {
|
|
|
|
// we only care if this is a create on a TokenCredentialRequest without a subresource
|
|
|
|
if rt.Resource() != loginv1alpha1.SchemeGroupVersion.WithResource("tokencredentialrequests") ||
|
|
|
|
rt.Verb() != kubeclient.VerbCreate ||
|
|
|
|
rt.Subresource() != "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// we only do this on the way out, since on the way back in we don't set a spec in our
|
|
|
|
// TokenCredentialRequest
|
|
|
|
rt.MutateRequest(func(obj kubeclient.Object) error {
|
|
|
|
tokenCredentialRequest, ok := obj.(*loginv1alpha1.TokenCredentialRequest)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("cannot cast obj of type %T to *loginv1alpha1.TokenCredentialRequest", obj)
|
|
|
|
}
|
|
|
|
|
|
|
|
if tokenCredentialRequest.Spec.Authenticator.APIGroup == nil {
|
|
|
|
// technically, the APIGroup field is optional, so clients are free to do this, but we
|
|
|
|
// want our middleware to be opinionated so that it can be really good at a specific task
|
|
|
|
// and give us specific feedback when it can't do that specific task
|
|
|
|
return fmt.Errorf(
|
2022-04-16 02:43:53 +00:00
|
|
|
"cannot replace token credential request %s/%s without authenticator API group",
|
|
|
|
obj.GetNamespace(), obj.GetName(),
|
2021-02-05 01:02:59 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
mutatedAuthenticatorAPIGroup, ok := Replace(*tokenCredentialRequest.Spec.Authenticator.APIGroup, apiGroupSuffix)
|
|
|
|
if !ok {
|
|
|
|
// see comment above about specificity of middleware
|
|
|
|
return fmt.Errorf(
|
2022-04-16 02:43:53 +00:00
|
|
|
"cannot replace token credential request %s/%s authenticator API group %q with group suffix %q",
|
|
|
|
obj.GetNamespace(), obj.GetName(),
|
2021-02-05 01:02:59 +00:00
|
|
|
*tokenCredentialRequest.Spec.Authenticator.APIGroup,
|
|
|
|
apiGroupSuffix,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
tokenCredentialRequest.Spec.Authenticator.APIGroup = &mutatedAuthenticatorAPIGroup
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}),
|
|
|
|
|
2021-01-13 01:27:41 +00:00
|
|
|
kubeclient.MiddlewareFunc(func(_ context.Context, rt kubeclient.RoundTrip) {
|
|
|
|
// always unreplace owner refs with apiGroupSuffix because we can consume those objects across all verbs
|
2021-02-03 23:49:15 +00:00
|
|
|
rt.MutateResponse(mutateOwnerRefs(Unreplace, apiGroupSuffix))
|
2021-01-13 01:27:41 +00:00
|
|
|
}),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-05 01:02:59 +00:00
|
|
|
func mutateOwnerRefs(replaceFunc func(baseAPIGroup, apiGroupSuffix string) (string, bool), apiGroupSuffix string) func(kubeclient.Object) error {
|
|
|
|
return func(obj kubeclient.Object) error {
|
2021-01-13 01:27:41 +00:00
|
|
|
// fix up owner refs because they are consumed by external and internal actors
|
|
|
|
oldRefs := obj.GetOwnerReferences()
|
|
|
|
if len(oldRefs) == 0 {
|
2021-02-05 01:02:59 +00:00
|
|
|
return nil
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var changedGroup bool
|
|
|
|
|
|
|
|
newRefs := make([]metav1.OwnerReference, 0, len(oldRefs))
|
|
|
|
for _, ref := range oldRefs {
|
|
|
|
ref := *ref.DeepCopy()
|
|
|
|
|
|
|
|
gv, _ := schema.ParseGroupVersion(ref.APIVersion) // error is safe to ignore, empty gv is fine
|
|
|
|
|
|
|
|
if newGroup, ok := replaceFunc(gv.Group, apiGroupSuffix); ok {
|
|
|
|
changedGroup = true
|
|
|
|
gv.Group = newGroup
|
|
|
|
ref.APIVersion = gv.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
newRefs = append(newRefs, ref)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !changedGroup {
|
2021-02-05 01:02:59 +00:00
|
|
|
return nil
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
obj.SetOwnerReferences(newRefs)
|
2021-02-05 01:02:59 +00:00
|
|
|
|
|
|
|
return nil
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace constructs an API group from a baseAPIGroup and a parameterized apiGroupSuffix.
|
|
|
|
//
|
|
|
|
// We assume that all baseAPIGroup's will end in "pinniped.dev", and therefore we can safely replace
|
|
|
|
// the reference to "pinniped.dev" with the provided apiGroupSuffix. If the provided baseAPIGroup
|
|
|
|
// does not end in "pinniped.dev", then this function will return an empty string and false.
|
|
|
|
//
|
|
|
|
// See ExampleReplace_loginv1alpha1 and ExampleReplace_string for more information on input/output pairs.
|
|
|
|
func Replace(baseAPIGroup, apiGroupSuffix string) (string, bool) {
|
|
|
|
if !strings.HasSuffix(baseAPIGroup, pinnipedDefaultSuffixWithDot) {
|
|
|
|
return "", false
|
|
|
|
}
|
2021-02-19 18:21:10 +00:00
|
|
|
return strings.TrimSuffix(baseAPIGroup, PinnipedDefaultSuffix) + apiGroupSuffix, true
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 23:49:15 +00:00
|
|
|
// Unreplace is like performing an undo of Replace().
|
|
|
|
func Unreplace(baseAPIGroup, apiGroupSuffix string) (string, bool) {
|
2021-01-13 01:27:41 +00:00
|
|
|
if !strings.HasSuffix(baseAPIGroup, "."+apiGroupSuffix) {
|
|
|
|
return "", false
|
|
|
|
}
|
2021-02-19 18:21:10 +00:00
|
|
|
return strings.TrimSuffix(baseAPIGroup, apiGroupSuffix) + PinnipedDefaultSuffix, true
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Validate validates the provided apiGroupSuffix is usable as an API group suffix. Specifically, it
|
|
|
|
// makes sure that the provided apiGroupSuffix is a valid DNS-1123 subdomain with at least one dot,
|
|
|
|
// to match Kubernetes behavior.
|
|
|
|
func Validate(apiGroupSuffix string) error {
|
2022-04-16 02:43:53 +00:00
|
|
|
var errs []error // nolint: prealloc
|
2021-01-13 01:27:41 +00:00
|
|
|
|
|
|
|
if len(strings.Split(apiGroupSuffix, ".")) < 2 {
|
2021-02-05 17:56:05 +00:00
|
|
|
errs = append(errs, constable.Error("must contain '.'"))
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
errorStrings := validation.IsDNS1123Subdomain(apiGroupSuffix)
|
|
|
|
for _, errorString := range errorStrings {
|
|
|
|
errorString := errorString
|
2021-02-05 17:56:05 +00:00
|
|
|
errs = append(errs, constable.Error(errorString))
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|
|
|
|
|
2021-02-05 17:56:05 +00:00
|
|
|
return errors.NewAggregate(errs)
|
2021-01-13 01:27:41 +00:00
|
|
|
}
|