-
Notifications
You must be signed in to change notification settings - Fork 43
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
Initial KeyStore implementation #3329
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// Copyright 2024 Stacklok, Inc. | ||
// | ||
// 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 algorithms contains implementations of various crypto algorithms | ||
// for the crypto engine. | ||
package algorithms | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
) | ||
|
||
// EncryptionAlgorithm represents a crypto algorithm used by the Engine | ||
type EncryptionAlgorithm interface { | ||
Encrypt(data []byte, key []byte, salt []byte) ([]byte, error) | ||
Decrypt(data []byte, key []byte, salt []byte) ([]byte, error) | ||
} | ||
|
||
// Type is an enum of supported encryption algorithms | ||
type Type string | ||
|
||
const ( | ||
// Aes256Cfb is the AES-256-CFB algorithm | ||
Aes256Cfb Type = "aes-256-cfb" | ||
) | ||
|
||
const maxSize = 32 * 1024 * 1024 | ||
|
||
// ErrUnknownAlgorithm is used when an incorrect algorithm name is used. | ||
var ( | ||
ErrUnknownAlgorithm = errors.New("unexpected encryption algorithm") | ||
) | ||
|
||
// TypeFromString attempts to map a string to a `Type` value. | ||
func TypeFromString(name string) (Type, error) { | ||
// TODO: use switch when we support more than once type. | ||
if name == string(Aes256Cfb) { | ||
return Aes256Cfb, nil | ||
} | ||
return "", fmt.Errorf("%w: %s", ErrUnknownAlgorithm, name) | ||
} | ||
|
||
// NewFromType instantiates an encryption algorithm by name | ||
func NewFromType(algoType Type) (EncryptionAlgorithm, error) { | ||
// TODO: use switch when we support more than once type. | ||
if algoType == Aes256Cfb { | ||
return &AES256CFBAlgorithm{}, nil | ||
} | ||
return nil, fmt.Errorf("%w: %s", ErrUnknownAlgorithm, algoType) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
// Copyright 2024 Stacklok, Inc. | ||
// | ||
// 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 keystores contains logic for loading encryption keys from a keystores | ||
package keystores | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"path/filepath" | ||
|
||
serverconfig "github.com/stacklok/minder/internal/config/server" | ||
"github.com/stacklok/minder/internal/crypto/algorithms" | ||
) | ||
|
||
//go:generate go run go.uber.org/mock/mockgen -package mock_$GOPACKAGE -destination=./mock/$GOFILE -source=./$GOFILE | ||
|
||
// KeyStore represents a struct which stores or can fetch encryption keys. | ||
type KeyStore interface { | ||
// GetKey retrieves the key for the specified algorithm by key ID. | ||
GetKey(algorithm algorithms.Type, id string) ([]byte, error) | ||
} | ||
|
||
// ErrUnknownKeyID is returned when the Key ID cannot be found by the keystore. | ||
var ErrUnknownKeyID = errors.New("unknown key id") | ||
|
||
// This structure is used by the keystore implementation to manage keys. | ||
type keysByAlgorithmAndID map[algorithms.Type]map[string][]byte | ||
dmjb marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
// NewKeyStoreFromConfig creates an instance of a KeyStore based on the | ||
// AuthConfig in Minder. | ||
// Since our only implementation is based on reading from the local disk, do | ||
// all key loading during construction of the struct. | ||
// TODO: allow support for multiple keys/algos | ||
func NewKeyStoreFromConfig(config *serverconfig.AuthConfig) (KeyStore, error) { | ||
key, err := config.GetTokenKey() | ||
if err != nil { | ||
return nil, fmt.Errorf("unable to read encryption key from %s: %w", config.TokenKey, err) | ||
} | ||
name := filepath.Base(config.TokenKey) | ||
keys := map[algorithms.Type]map[string][]byte{ | ||
algorithms.Aes256Cfb: { | ||
name: key, | ||
}, | ||
} | ||
return &localFileKeyStore{ | ||
keys: keys, | ||
}, nil | ||
} | ||
|
||
type localFileKeyStore struct { | ||
keys keysByAlgorithmAndID | ||
} | ||
|
||
func (l *localFileKeyStore) GetKey(algorithm algorithms.Type, id string) ([]byte, error) { | ||
algorithmKeys, ok := l.keys[algorithm] | ||
if !ok { | ||
return nil, fmt.Errorf("%w: %s", algorithms.ErrUnknownAlgorithm, algorithm) | ||
} | ||
key, ok := algorithmKeys[id] | ||
if !ok { | ||
return nil, fmt.Errorf("%w: %s", ErrUnknownKeyID, id) | ||
} | ||
return key, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
algorithm.go
file has grown quite large, I split it in two as part of this PR.