Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Thread configurable trustroot resync period to bundle trustroot func #171

Merged
merged 5 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cmd/webhook/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ import (
"github.com/sigstore/sigstore/pkg/tuf"

"github.com/sigstore/policy-controller/pkg/apis/config"
pctuf "github.com/sigstore/policy-controller/pkg/tuf"
cwebhook "github.com/sigstore/policy-controller/pkg/webhook"
)

Expand Down Expand Up @@ -136,7 +137,7 @@ func main() {

// Set the policy and trust root resync periods
ctx = clusterimagepolicy.ToContext(ctx, *policyResyncPeriod)
ctx = trustroot.ToContext(ctx, *trustrootResyncPeriod)
ctx = pctuf.ToContext(ctx, *trustrootResyncPeriod)

// This must match the set of resources we configure in
// cmd/webhook/main.go in the "types" map.
Expand Down
20 changes: 2 additions & 18 deletions pkg/reconciler/trustroot/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ package trustroot

import (
"context"
"time"

"k8s.io/client-go/tools/cache"
kubeclient "knative.dev/pkg/client/injection/kube/client"
Expand All @@ -30,15 +29,14 @@ import (
"github.com/sigstore/policy-controller/pkg/apis/config"
trustrootinformer "github.com/sigstore/policy-controller/pkg/client/injection/informers/policy/v1alpha1/trustroot"
trustrootreconciler "github.com/sigstore/policy-controller/pkg/client/injection/reconciler/policy/v1alpha1/trustroot"
"github.com/sigstore/policy-controller/pkg/tuf"
cminformer "knative.dev/pkg/injection/clients/namespacedkube/informers/core/v1/configmap"
)

// This is what the default finalizer name is, but make it explicit so we can
// use it in tests as well.
const FinalizerName = "trustroots.policy.sigstore.dev"

type trustrootResyncPeriodKey struct{}

// NewController creates a Reconciler and returns the result of NewImpl.
func NewController(
ctx context.Context,
Expand Down Expand Up @@ -78,22 +76,8 @@ func NewController(
pkgreconciler.NamespaceFilterFunc(system.Namespace()),
pkgreconciler.NameFilterFunc(config.SigstoreKeysConfigName)),
Handler: controller.HandleAll(grCb),
}, FromContextOrDefaults(ctx)); err != nil {
}, tuf.FromContextOrDefaults(ctx)); err != nil {
logging.FromContext(ctx).Warnf("Failed configMapInformer AddEventHandlerWithResyncPeriod() %v", err)
}
return impl
}

func ToContext(ctx context.Context, duration time.Duration) context.Context {
return context.WithValue(ctx, trustrootResyncPeriodKey{}, duration)
}

// FromContextOrDefaults returns a stored trustrootResyncPeriod if attached.
// If not found, it returns a default duration
func FromContextOrDefaults(ctx context.Context) time.Duration {
x, ok := ctx.Value(trustrootResyncPeriodKey{}).(time.Duration)
if ok {
return x
}
return controller.DefaultResyncPeriod
}
20 changes: 0 additions & 20 deletions pkg/reconciler/trustroot/controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ package trustroot

import (
"testing"
"time"

"knative.dev/pkg/configmap"
"knative.dev/pkg/controller"
rtesting "knative.dev/pkg/reconciler/testing"

// Fake injection informers
Expand All @@ -39,21 +37,3 @@ func TestNew(t *testing.T) {
t.Fatal("Expected NewController to return a non-nil value")
}
}

func TestContextDuration(t *testing.T) {
ctx, _ := rtesting.SetupFakeContext(t)

expected := controller.DefaultResyncPeriod
actual := FromContextOrDefaults(ctx)
if expected != actual {
t.Fatal("Expected the context to store the value and be retrievable")
}

expected = time.Hour
ctx = ToContext(ctx, expected)
actual = FromContextOrDefaults(ctx)

if expected != actual {
t.Fatal("Expected the context to store the value and be retrievable")
}
}
41 changes: 41 additions & 0 deletions pkg/tuf/context.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
//
// Copyright 2024 The Sigstore 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 tuf

import (
"context"
"time"

"knative.dev/pkg/controller"
)

type trustrootResyncPeriodKey struct{}

// ToContext returns a context that includes a key trustrootResyncPeriod
// set to the included duration
func ToContext(ctx context.Context, duration time.Duration) context.Context {
return context.WithValue(ctx, trustrootResyncPeriodKey{}, duration)
}

// FromContextOrDefaults returns a stored trustrootResyncPeriod if attached.
// If not found, it returns a default duration
func FromContextOrDefaults(ctx context.Context) time.Duration {
x, ok := ctx.Value(trustrootResyncPeriodKey{}).(time.Duration)
if ok {
return x
}
return controller.DefaultResyncPeriod
}
42 changes: 42 additions & 0 deletions pkg/tuf/context_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
//
// Copyright 2024 The Sigstore 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 tuf

import (
"testing"
"time"

"knative.dev/pkg/controller"
rtesting "knative.dev/pkg/reconciler/testing"
)

func TestContextDuration(t *testing.T) {
ctx, _ := rtesting.SetupFakeContext(t)

expected := controller.DefaultResyncPeriod
actual := FromContextOrDefaults(ctx)
if expected != actual {
t.Fatal("Expected the context to store the value and be retrievable")
}

expected = time.Hour
ctx = ToContext(ctx, expected)
actual = FromContextOrDefaults(ctx)

if expected != actual {
t.Fatal("Expected the context to store the value and be retrievable")
}
}
9 changes: 5 additions & 4 deletions pkg/tuf/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,12 @@ var (
)

// GetTrustedRoot returns the trusted root for the TUF repository.
func GetTrustedRoot() (*root.TrustedRoot, error) {
func GetTrustedRoot(ctx context.Context) (*root.TrustedRoot, error) {
resyncPeriodDuration := FromContextOrDefaults(ctx)
now := time.Now().UTC()
// check if timestamp has never been or if the current time is more
// than 24 hours after the current value of timestamp
if timestamp.IsZero() || now.After(timestamp.Add(24*time.Hour)) {
// check if timestamp has never been set or if the current time
// is after the current timestamp value plus the included resync duration
if timestamp.IsZero() || now.After(timestamp.Add(resyncPeriodDuration)) {
mu.Lock()
defer mu.Unlock()

Expand Down
2 changes: 1 addition & 1 deletion pkg/webhook/validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ func trustedMaterialFromAuthority(ctx context.Context, authority webhookcip.Auth
return nil, fmt.Errorf("trusted root \"%s\" does not exist", authority.Keyless.TrustRootRef)
}
}
trustedMaterial, err := pctuf.GetTrustedRoot()
trustedMaterial, err := pctuf.GetTrustedRoot(ctx)
if err != nil {
return nil, fmt.Errorf("failed to parse trusted root from protobuf: %w", err)
}
Expand Down
Loading