mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-19 17:59:05 -05:00
This extends statemgr.Persistent, statemgr.Locker and remote.Client to all expect context.Context parameters, and then updates all of the existing implementations of those interfaces to support them. All of the calls to statemgr.Persistent and statemgr.Locker methods outside of tests are consistently context.TODO() for now, because the caller landscape of these interfaces has some complications: 1. statemgr.Locker is also used by the clistate package for its state implementation that was derived from statemgr.Filesystem's predecessor, even though what clistate manages is not actually "state" in the sense of package statemgr. The callers of that are not yet ready to provide real contexts. In a future commit we'll either need to plumb context through to all of the clistate callers, or continue the effort to separate statemgr from clistate by introducing a clistate-specific "locker" API for it to use instead. 2. We call statemgr.Persistent and statemgr.Locker methods in situations where the active context might have already been cancelled, and so we'll need to make sure to ignore cancellation when calling those. This is mainly limited to PersistState and Unlock, since both need to be able to complete after a cancellation, but there are various codepaths that perform a Lock, Refresh, Persist, Unlock sequence and so it isn't yet clear where is the best place to enforce the invariant that Persist and Unlock must not be called with a cancelable context. We'll deal with that more in subsequent commits. Within the various state manager and remote client implementations the contexts _are_ wired together as best as possible with how these subsystems are already laid out, and so once we deal with the problems above and make callers provide suitable contexts they should be able to reach all of the leaf API clients that might want to generate OpenTelemetry traces. Signed-off-by: Martin Atkins <mart@degeneration.co.uk>
204 lines
5.1 KiB
Go
204 lines
5.1 KiB
Go
// Copyright (c) The OpenTofu Authors
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
// Copyright (c) 2023 HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
package oss
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"log"
|
|
"path"
|
|
"sort"
|
|
"strings"
|
|
|
|
"github.com/aliyun/aliyun-oss-go-sdk/oss"
|
|
"github.com/aliyun/aliyun-tablestore-go-sdk/tablestore"
|
|
|
|
"github.com/opentofu/opentofu/internal/backend"
|
|
"github.com/opentofu/opentofu/internal/states"
|
|
"github.com/opentofu/opentofu/internal/states/remote"
|
|
"github.com/opentofu/opentofu/internal/states/statemgr"
|
|
)
|
|
|
|
const (
|
|
lockFileSuffix = ".tflock"
|
|
)
|
|
|
|
// get a remote client configured for this state
|
|
func (b *Backend) remoteClient(name string) (*RemoteClient, error) {
|
|
if name == "" {
|
|
return nil, errors.New("missing state name")
|
|
}
|
|
|
|
client := &RemoteClient{
|
|
ossClient: b.ossClient,
|
|
bucketName: b.bucketName,
|
|
stateFile: b.stateFile(name),
|
|
lockFile: b.lockFile(name),
|
|
serverSideEncryption: b.serverSideEncryption,
|
|
acl: b.acl,
|
|
otsTable: b.otsTable,
|
|
otsClient: b.otsClient,
|
|
}
|
|
if b.otsEndpoint != "" && b.otsTable != "" {
|
|
_, err := b.otsClient.DescribeTable(&tablestore.DescribeTableRequest{
|
|
TableName: b.otsTable,
|
|
})
|
|
if err != nil {
|
|
return client, fmt.Errorf("error describing table store %s: %w", b.otsTable, err)
|
|
}
|
|
}
|
|
|
|
return client, nil
|
|
}
|
|
|
|
func (b *Backend) Workspaces(context.Context) ([]string, error) {
|
|
bucket, err := b.ossClient.Bucket(b.bucketName)
|
|
if err != nil {
|
|
return []string{""}, fmt.Errorf("error getting bucket: %w", err)
|
|
}
|
|
|
|
var options []oss.Option
|
|
options = append(options, oss.Prefix(b.statePrefix+"/"), oss.MaxKeys(1000))
|
|
resp, err := bucket.ListObjects(options...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
result := []string{backend.DefaultStateName}
|
|
prefix := b.statePrefix
|
|
lastObj := ""
|
|
for {
|
|
for _, obj := range resp.Objects {
|
|
// we have 3 parts, the state prefix, the workspace name, and the state file: <prefix>/<workspace-name>/<key>
|
|
if path.Join(b.statePrefix, b.stateKey) == obj.Key {
|
|
// filter the default workspace
|
|
continue
|
|
}
|
|
lastObj = obj.Key
|
|
parts := strings.Split(strings.TrimPrefix(obj.Key, prefix+"/"), "/")
|
|
if len(parts) > 0 && parts[0] != "" {
|
|
result = append(result, parts[0])
|
|
}
|
|
}
|
|
if resp.IsTruncated {
|
|
if len(options) == 3 {
|
|
options[2] = oss.Marker(lastObj)
|
|
} else {
|
|
options = append(options, oss.Marker(lastObj))
|
|
}
|
|
resp, err = bucket.ListObjects(options...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
} else {
|
|
break
|
|
}
|
|
}
|
|
sort.Strings(result[1:])
|
|
return result, nil
|
|
}
|
|
|
|
func (b *Backend) DeleteWorkspace(ctx context.Context, name string, _ bool) error {
|
|
if name == backend.DefaultStateName || name == "" {
|
|
return fmt.Errorf("can't delete default state")
|
|
}
|
|
|
|
client, err := b.remoteClient(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return client.Delete(ctx)
|
|
}
|
|
|
|
func (b *Backend) StateMgr(ctx context.Context, name string) (statemgr.Full, error) {
|
|
client, err := b.remoteClient(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
stateMgr := remote.NewState(client, b.encryption)
|
|
|
|
// Check to see if this state already exists.
|
|
existing, err := b.Workspaces(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
log.Printf("[DEBUG] Current workspace name: %s. All workspaces:%#v", name, existing)
|
|
|
|
exists := false
|
|
for _, s := range existing {
|
|
if s == name {
|
|
exists = true
|
|
break
|
|
}
|
|
}
|
|
// We need to create the object so it's listed by States.
|
|
if !exists {
|
|
// take a lock on this state while we write it
|
|
lockInfo := statemgr.NewLockInfo()
|
|
lockInfo.Operation = "init"
|
|
lockId, err := client.Lock(context.TODO(), lockInfo)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("failed to lock OSS state: %w", err)
|
|
}
|
|
|
|
// Local helper function so we can call it multiple places
|
|
lockUnlock := func(e error) error {
|
|
if err := stateMgr.Unlock(context.TODO(), lockId); err != nil {
|
|
return fmt.Errorf(strings.TrimSpace(stateUnlockError), lockId, err)
|
|
}
|
|
return e
|
|
}
|
|
|
|
// Grab the value
|
|
if err := stateMgr.RefreshState(context.TODO()); err != nil {
|
|
err = lockUnlock(err)
|
|
return nil, err
|
|
}
|
|
|
|
// If we have no state, we have to create an empty state
|
|
if v := stateMgr.State(); v == nil {
|
|
if err := stateMgr.WriteState(states.NewState()); err != nil {
|
|
err = lockUnlock(err)
|
|
return nil, err
|
|
}
|
|
if err := stateMgr.PersistState(context.TODO(), nil); err != nil {
|
|
err = lockUnlock(err)
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
// Unlock, the state should now be initialized
|
|
if err := lockUnlock(nil); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
}
|
|
return stateMgr, nil
|
|
}
|
|
|
|
func (b *Backend) stateFile(name string) string {
|
|
if name == backend.DefaultStateName {
|
|
return path.Join(b.statePrefix, b.stateKey)
|
|
}
|
|
return path.Join(b.statePrefix, name, b.stateKey)
|
|
}
|
|
|
|
func (b *Backend) lockFile(name string) string {
|
|
return b.stateFile(name) + lockFileSuffix
|
|
}
|
|
|
|
const stateUnlockError = `
|
|
Error unlocking Alibaba Cloud OSS state file:
|
|
|
|
Lock ID: %s
|
|
Error message: %w
|
|
|
|
You may have to force-unlock this state in order to use it again.
|
|
The Alibaba Cloud backend acquires a lock during initialization to ensure the initial state file is created.
|
|
`
|