Skip to content
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
1 change: 1 addition & 0 deletions cmd/cosign/cli/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ func New() *cobra.Command {
cmd.AddCommand(Attest())
cmd.AddCommand(AttestBlob())
cmd.AddCommand(Clean())
cmd.AddCommand(Debug())
cmd.AddCommand(Tree())
cmd.AddCommand(Completion())
cmd.AddCommand(Copy())
Expand Down
43 changes: 43 additions & 0 deletions cmd/cosign/cli/debug.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// 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 cli

import (
"github.com/sigstore/cosign/v2/cmd/cosign/cli/debug"
"github.com/spf13/cobra"
)

func Debug() *cobra.Command {
cmd := &cobra.Command{
Use: "debug",
Hidden: true,
RunE: func(cmd *cobra.Command, _ []string) error {
return cmd.Help()
},
}
cmd.AddCommand(debugProviders())
return cmd
}

func debugProviders() *cobra.Command {
cmd := &cobra.Command{
Use: "providers",
Short: "Show enabled/disabled OIDC providers.",
RunE: func(cmd *cobra.Command, _ []string) error {
return debug.ProviderCmd(cmd.Context(), cmd.OutOrStdout())
},
}
return cmd
}
30 changes: 30 additions & 0 deletions cmd/cosign/cli/debug/provider.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// 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 debug

import (
"context"
"fmt"
"io"

"github.com/sigstore/cosign/v2/pkg/providers"
)

func ProviderCmd(ctx context.Context, w io.Writer) error {
for _, p := range providers.Providers() {
fmt.Fprintf(w, "%s: %t\n", p.Name, p.Provider.Enabled(ctx))
}
return nil
}
36 changes: 22 additions & 14 deletions pkg/providers/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ import (

var (
m sync.Mutex
providers []providerEntry
providers []ProviderEntry
)

type providerEntry struct {
name string
p Interface
type ProviderEntry struct {
Name string
Provider Interface
}

// Interface is what providers need to implement to participate in furnishing OIDC tokens.
Expand All @@ -47,20 +47,20 @@ func Register(name string, p Interface) {
defer m.Unlock()

for _, pe := range providers {
if pe.name == name {
panic(fmt.Sprintf("duplicate provider for name %q, %T and %T", name, pe.p, p))
if pe.Name == name {
panic(fmt.Sprintf("duplicate provider for name %q, %T and %T", name, pe.Provider, p))
}
}
providers = append(providers, providerEntry{name: name, p: p})
providers = append(providers, ProviderEntry{Name: name, Provider: p})
}

// Enabled checks whether any of the registered providers are enabled in this execution context.
func Enabled(ctx context.Context) bool {
m.Lock()
defer m.Unlock()

for _, provider := range providers {
if provider.p.Enabled(ctx) {
for _, pe := range providers {
if pe.Provider.Enabled(ctx) {
return true
}
}
Expand All @@ -74,11 +74,12 @@ func Provide(ctx context.Context, audience string) (string, error) {

var id string
var err error
for _, provider := range providers {
if !provider.p.Enabled(ctx) {
for _, pe := range providers {
p := pe.Provider
if !p.Enabled(ctx) {
continue
}
id, err = provider.p.Provide(ctx, audience)
id, err = p.Provide(ctx, audience)
if err == nil {
return id, nil
}
Expand All @@ -97,9 +98,16 @@ func ProvideFrom(_ context.Context, provider string) (Interface, error) {
defer m.Unlock()

for _, p := range providers {
if p.name == provider {
return p.p, nil
if p.Name == provider {
return p.Provider, nil
}
}
return nil, fmt.Errorf("%s is not a valid provider", provider)
}

func Providers() []ProviderEntry {
m.Lock()
defer m.Unlock()

return providers
}