Skip to content

Commit

Permalink
Add MySQL support to backfill script
Browse files Browse the repository at this point in the history
Rename backfill-redis to backfill-index and add support for when MySQL
is used as the index storage backend.

Some Redis-specific parameters are renamed to clearly differentiate them
from MySQL parameters. MySQL connection parameters mirror the
rekor-server paramters, using a single --dsn flag instead of separate
host, port, password, etc flags.

Signed-off-by: Colleen Murphy <colleenmurphy@google.com>
  • Loading branch information
cmurphy committed Apr 25, 2024
1 parent 58a38c2 commit 16b94ae
Show file tree
Hide file tree
Showing 8 changed files with 141 additions and 78 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
make ko-local
docker run --rm $(cat rekorImagerefs) version
docker run --rm $(cat cliImagerefs) version
docker run --rm $(cat redisImagerefs) --version
docker run --rm $(cat indexImagerefs) --version
e2e:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ trillianServerImagerefs
trillianSignerImagerefs
rekorImagerefs
cliImagerefs
redisImagerefs
indexImagerefs
cosign.*
signature
rekor.pub
Expand Down
4 changes: 2 additions & 2 deletions .ko.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ builds:
- -extldflags "-static"
- "{{ .Env.LDFLAGS }}"

- id: backfill-redis
- id: backfill-index
dir: .
main: ./cmd/backfill-redis
main: ./cmd/backfill-index
env:
- CGO_ENABLED=0
flags:
Expand Down
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ rekor-cli: $(SRCS)
rekor-server: $(SRCS)
CGO_ENABLED=0 go build -trimpath -ldflags "$(SERVER_LDFLAGS)" -o rekor-server ./cmd/rekor-server

backfill-redis: $(SRCS)
CGO_ENABLED=0 go build -trimpath -ldflags "$(SERVER_LDFLAGS)" -o backfill-redis ./cmd/backfill-redis
backfill-index: $(SRCS)
CGO_ENABLED=0 go build -trimpath -ldflags "$(SERVER_LDFLAGS)" -o backfill-index ./cmd/backfill-index

test:
go test ./...
Expand Down Expand Up @@ -120,11 +120,11 @@ ko:
--platform=all --tags $(GIT_VERSION) --tags $(GIT_HASH) \
--image-refs rekorCliImagerefs github.com/sigstore/rekor/cmd/rekor-cli

# backfill-redis
# backfill-index
LDFLAGS="$(SERVER_LDFLAGS)" GIT_HASH=$(GIT_HASH) GIT_VERSION=$(GIT_VERSION) \
ko publish --base-import-paths \
--platform=all --tags $(GIT_VERSION) --tags $(GIT_HASH) \
--image-refs bRedisImagerefs github.com/sigstore/rekor/cmd/backfill-redis
--image-refs bIndexImagerefs github.com/sigstore/rekor/cmd/backfill-index

deploy:
LDFLAGS="$(SERVER_LDFLAGS)" GIT_HASH=$(GIT_HASH) GIT_VERSION=$(GIT_VERSION) ko apply -f config/
Expand Down Expand Up @@ -154,8 +154,8 @@ ko-local:

KO_DOCKER_REPO=ko.local LDFLAGS="$(SERVER_LDFLAGS)" GIT_HASH=$(GIT_HASH) GIT_VERSION=$(GIT_VERSION) \
ko publish --base-import-paths \
--tags $(GIT_VERSION) --tags $(GIT_HASH) --image-refs redisImagerefs \
github.com/sigstore/rekor/cmd/backfill-redis
--tags $(GIT_VERSION) --tags $(GIT_HASH) --image-refs indexImagerefs \
github.com/sigstore/rekor/cmd/backfill-index

.PHONY: fuzz
# This runs the fuzz tests for a short period of time to ensure they don't crash.
Expand Down
179 changes: 121 additions & 58 deletions cmd/backfill-redis/main.go → cmd/backfill-index/main.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2022 The Sigstore Authors.
// 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.
Expand All @@ -13,13 +13,14 @@
// limitations under the License.

/*
backfill-redis is a script to populate the Redis index with entries
from Rekor. This is sometimes necessary because Redis caching is best
effort. If Redis returns an error, Rekor will not, and so sometimes
we need to backfill missing entries into Redis for the search API.
backfill-index is a script to populate the index storage database with
entries from Rekor. This is sometimes necessary because caching is
best effort. If Redis returns an error, the database will not, and so sometimes
we need to backfill missing entries into the database for the search API.
It can also be used to populate an index storage backend from scratch.
To run:
go run cmd/backfill-redis/main.go --rekor-address <address> \
go run cmd/backfill-index/main.go --rekor-address <address> \
--hostname <redis-hostname> --port <redis-port> --concurrency <num-of-workers> \
--start <first index to backfill> --end <last index to backfill> [--dry-run]
*/
Expand All @@ -40,11 +41,14 @@ import (
"syscall"

"github.com/go-openapi/runtime"
_ "github.com/go-sql-driver/mysql"
"github.com/jmoiron/sqlx"
"github.com/redis/go-redis/v9"
"golang.org/x/sync/errgroup"
"sigs.k8s.io/release-utils/version"

"github.com/sigstore/rekor/pkg/client"
rekorclient "github.com/sigstore/rekor/pkg/generated/client"
"github.com/sigstore/rekor/pkg/generated/client/entries"
"github.com/sigstore/rekor/pkg/generated/models"
"github.com/sigstore/rekor/pkg/types"
Expand All @@ -64,18 +68,43 @@ import (
_ "github.com/sigstore/rekor/pkg/types/tuf/v0.0.1"
)

const (
mysqlWriteStmt = "INSERT IGNORE INTO EntryIndex (EntryKey, EntryUUID) VALUES (:key, :uuid)"
)

type provider int

const (
providerUnset provider = iota
providerRedis
providerMySQL
)

type indexClient interface {
idempotentAddToIndex(ctx context.Context, key, value string) error
}

type redisClient struct {
client *redis.Client
}

type mysqlClient struct {
client *sqlx.DB
}

var (
redisHostname = flag.String("hostname", "", "Hostname for Redis application")
redisPort = flag.String("port", "", "Port to Redis application")
redisPassword = flag.String("password", "", "Password for Redis authentication")
startIndex = flag.Int("start", -1, "First index to backfill")
endIndex = flag.Int("end", -1, "Last index to backfill")
enableTLS = flag.Bool("enable-tls", false, "Enable TLS for Redis client")
insecureSkipVerify = flag.Bool("insecure-skip-verify", false, "Whether to skip TLS verification for Redis client or not")
rekorAddress = flag.String("rekor-address", "", "Address for Rekor, e.g. https://rekor.sigstore.dev")
versionFlag = flag.Bool("version", false, "Print the current version of Backfill Redis")
concurrency = flag.Int("concurrency", 1, "Number of workers to use for backfill")
dryRun = flag.Bool("dry-run", false, "Dry run - don't actually insert into Redis")
redisHostname = flag.String("redis-hostname", "", "Hostname for Redis application")
redisPort = flag.String("redis-port", "", "Port to Redis application")
redisPassword = flag.String("redis-password", "", "Password for Redis authentication")
redisEnableTLS = flag.Bool("redis-enable-tls", false, "Enable TLS for Redis client")
redisInsecureSkipVerify = flag.Bool("redis-insecure-skip-verify", false, "Whether to skip TLS verification for Redis client or not")
mysqlDSN = flag.String("mysql-dsn", "", "MySQL Data Source Name")
startIndex = flag.Int("start", -1, "First index to backfill")
endIndex = flag.Int("end", -1, "Last index to backfill")
rekorAddress = flag.String("rekor-address", "", "Address for Rekor, e.g. https://rekor.sigstore.dev")
versionFlag = flag.Bool("version", false, "Print the current version of Backfill MySQL")
concurrency = flag.Int("concurrency", 1, "Number of workers to use for backfill")
dryRun = flag.Bool("dry-run", false, "Dry run - don't actually insert into MySQL")
)

func main() {
Expand All @@ -87,11 +116,23 @@ func main() {
os.Exit(0)
}

if *redisHostname == "" {
log.Fatal("address must be set")
provider := providerUnset
if *mysqlDSN != "" {
provider = providerMySQL
}
if *redisHostname != "" || *redisPort != "" || *redisPassword != "" {
provider = providerRedis
}
if provider == providerUnset {
log.Fatal("Must set mysql-dsn for MySQL or redis-hostname and redis-port for Redis")
}
if *redisPort == "" {
log.Fatal("port must be set")
if provider == providerRedis {
if *redisHostname == "" {
log.Fatal("Redis address must be set")
}
if *redisPort == "" {
log.Fatal("Redis port must be set")
}
}
if *startIndex == -1 {
log.Fatal("start must be set to >=0")
Expand All @@ -103,15 +144,57 @@ func main() {
log.Fatal("rekor-address must be set")
}

log.Printf("running backfill redis Version: %s GitCommit: %s BuildDate: %s", versionInfo.GitVersion, versionInfo.GitCommit, versionInfo.BuildDate)
log.Printf("running backfill index Version: %s GitCommit: %s BuildDate: %s", versionInfo.GitVersion, versionInfo.GitCommit, versionInfo.BuildDate)

redisClient := redisClient()
indexClient, err := getIndexClient(provider)
if err != nil {
log.Fatalf("creating index client: %v", err)
}

rekorClient, err := client.GetRekorClient(*rekorAddress)
if err != nil {
log.Fatalf("creating rekor client: %v", err)
}

err = populate(indexClient, rekorClient)
if err != nil {
log.Fatalf("populating index: %v", err)
}
}

// getIndexClient creates a client for the provided index backend.
func getIndexClient(backend provider) (indexClient, error) {
switch backend {
case providerRedis:
opts := &redis.Options{
Addr: fmt.Sprintf("%s:%s", *redisHostname, *redisPort),
Password: *redisPassword,
Network: "tcp",
DB: 0, // default DB
}
// #nosec G402
if *redisEnableTLS {
opts.TLSConfig = &tls.Config{
InsecureSkipVerify: *redisInsecureSkipVerify, //nolint: gosec
}
}
return &redisClient{client: redis.NewClient(opts)}, nil
case providerMySQL:
dbClient, err := sqlx.Open("mysql", *mysqlDSN)
if err != nil {
return nil, err
}
if err = dbClient.Ping(); err != nil {
return nil, err
}
return &mysqlClient{client: dbClient}, nil
default:
return nil, fmt.Errorf("could not create client for unexpected provider")
}
}

// populate does the heavy lifting of populating the index storage for whichever client is passed in.
func populate(indexClient indexClient, rekorClient *rekorclient.Rekor) error {
ctx, _ := signal.NotifyContext(context.Background(), os.Interrupt, syscall.SIGTERM)
group, ctx := errgroup.WithContext(ctx)
group.SetLimit(*concurrency)
Expand Down Expand Up @@ -164,14 +247,10 @@ func main() {
continue
}
for _, key := range keys {
// remove the key-value pair from the index in case it already exists
if err := removeFromIndex(ctx, redisClient, key, uuid); err != nil {
insertErrs = append(insertErrs, fmt.Errorf("error removing UUID %s with key %s: %w", uuid, key, err))
}
if err := addToIndex(ctx, redisClient, key, uuid); err != nil {
if err := indexClient.idempotentAddToIndex(ctx, key, uuid); err != nil {
insertErrs = append(insertErrs, fmt.Errorf("error inserting UUID %s with key %s: %w", uuid, key, err))
}
fmt.Printf("Uploaded Redis entry %s, index %d, key %s\n", uuid, index, key)
fmt.Printf("Uploaded entry %s, index %d, key %s\n", uuid, index, key)
}
}
if len(insertErrs) != 0 || len(parseErrs) != 0 {
Expand All @@ -194,37 +273,19 @@ func main() {
return nil
})
}
err = group.Wait()
err := group.Wait()
if err != nil {
log.Fatalf("error running backfill: %v", err)
}
close(resultChan)
fmt.Println("Backfill complete")
if len(parseErrs) > 0 {
fmt.Printf("Failed to parse %d entries: %v\n", len(parseErrs), parseErrs)
return fmt.Errorf("failed to parse %d entries: %v", len(parseErrs), parseErrs)
}
if len(insertErrs) > 0 {
fmt.Printf("Failed to insert/remove %d entries: %v\n", len(insertErrs), insertErrs)
return fmt.Errorf("failed to insert/remove %d entries: %v", len(insertErrs), insertErrs)
}
}

func redisClient() *redis.Client {

opts := &redis.Options{
Addr: fmt.Sprintf("%s:%s", *redisHostname, *redisPort),
Password: *redisPassword,
Network: "tcp",
DB: 0, // default DB
}

// #nosec G402
if *enableTLS {
opts.TLSConfig = &tls.Config{
InsecureSkipVerify: *insecureSkipVerify, //nolint: gosec
}
}

return redis.NewClient(opts)
return nil
}

// unmarshalEntryImpl decodes the base64-encoded entry to a specific entry type (types.EntryImpl).
Expand All @@ -247,21 +308,23 @@ func unmarshalEntryImpl(e string) (types.EntryImpl, string, string, error) {
return entry, pe.Kind(), entry.APIVersion(), nil
}

// removeFromIndex removes all occurrences of a value from a given key. This guards against
// multiple invocations of backfilling creating duplicates.
func removeFromIndex(ctx context.Context, redisClient *redis.Client, key, value string) error {
func (c *redisClient) idempotentAddToIndex(ctx context.Context, key, value string) error {
if *dryRun {
return nil
}
_, err := redisClient.LRem(ctx, key, 0, value).Result()
// remove the key-value pair from the index in case it already exists
_, err := c.client.LRem(ctx, key, 0, value).Result()
if err != nil {
return err
}
_, err = c.client.LPush(ctx, key, value).Result()
return err
}

// addToIndex pushes a value onto a key of type list.
func addToIndex(ctx context.Context, redisClient *redis.Client, key, value string) error {
func (c *mysqlClient) idempotentAddToIndex(ctx context.Context, key, value string) error {
if *dryRun {
return nil
}
_, err := redisClient.LPush(ctx, key, value).Result()
_, err := c.client.NamedExecContext(ctx, mysqlWriteStmt, map[string]any{"key": key, "uuid": value})
return err
}
8 changes: 4 additions & 4 deletions release/ko-sign-release-images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ if [[ ! -f rekorCliImagerefs ]]; then
exit 1
fi

if [[ ! -f bRedisImagerefs ]]; then
echo "bRedisImagerefs not found"
if [[ ! -f bIndexImagerefs ]]; then
echo "bIndexImagerefs not found"
exit 1
fi

echo "Signing images with GCP KMS Key..."
cosign sign --yes --key "gcpkms://projects/$PROJECT_ID/locations/$KEY_LOCATION/keyRings/$KEY_RING/cryptoKeys/$KEY_NAME/versions/$KEY_VERSION" -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat rekorServerImagerefs)
cosign sign --yes --key "gcpkms://projects/$PROJECT_ID/locations/$KEY_LOCATION/keyRings/$KEY_RING/cryptoKeys/$KEY_NAME/versions/$KEY_VERSION" -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat rekorCliImagerefs)
cosign sign --yes --key "gcpkms://projects/$PROJECT_ID/locations/$KEY_LOCATION/keyRings/$KEY_RING/cryptoKeys/$KEY_NAME/versions/$KEY_VERSION" -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat bRedisImagerefs)
cosign sign --yes --key "gcpkms://projects/$PROJECT_ID/locations/$KEY_LOCATION/keyRings/$KEY_RING/cryptoKeys/$KEY_NAME/versions/$KEY_VERSION" -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat bIndexImagerefs)

echo "Signing images with Keyless..."
cosign sign --yes -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat rekorServerImagerefs)
cosign sign --yes -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat rekorCliImagerefs)
cosign sign --yes -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat bRedisImagerefs)
cosign sign --yes -a GIT_HASH="$GIT_HASH" -a GIT_VERSION="$GIT_VERSION" $(cat bIndexImagerefs)
8 changes: 4 additions & 4 deletions release/release.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ copy-rekor-server-signed-release-to-ghcr:
copy-rekor-cli-signed-release-to-ghcr:
cosign copy $(KO_PREFIX)/rekor-cli:$(GIT_VERSION) $(GHCR_PREFIX)/rekor-cli:$(GIT_VERSION)

.PHONY: copy-backfill-redis-signed-release-to-ghcr
copy-backfill-redis-signed-release-to-ghcr:
cosign copy $(KO_PREFIX)/backfill-redis:$(GIT_VERSION) $(GHCR_PREFIX)/backfill-redis:$(GIT_VERSION)
.PHONY: copy-backfill-index-signed-release-to-ghcr
copy-backfill-index-signed-release-to-ghcr:
cosign copy $(KO_PREFIX)/backfill-index:$(GIT_VERSION) $(GHCR_PREFIX)/backfill-index:$(GIT_VERSION)

.PHONY: copy-signed-release-to-ghcr
copy-signed-release-to-ghcr: copy-rekor-server-signed-release-to-ghcr copy-rekor-cli-signed-release-to-ghcr copy-backfill-redis-signed-release-to-ghcr
copy-signed-release-to-ghcr: copy-rekor-server-signed-release-to-ghcr copy-rekor-cli-signed-release-to-ghcr copy-backfill-index-signed-release-to-ghcr

## --------------------------------------
## Dist / maybe we can deprecate
Expand Down
4 changes: 2 additions & 2 deletions tests/backfill-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ check_all_entries() {
run_backfill() {
set -e
local end_index=$1
go run cmd/backfill-redis/main.go --rekor-address $REKOR_ADDRESS \
--hostname $REDIS_HOST --port $REDIS_PORT --password $REDIS_PASSWORD \
go run cmd/backfill-index/main.go --rekor-address $REKOR_ADDRESS \
--redis-hostname $REDIS_HOST --redis-port $REDIS_PORT --redis-password $REDIS_PASSWORD \
--concurrency 5 --start 0 --end $end_index
set +e
}
Expand Down

0 comments on commit 16b94ae

Please sign in to comment.