// Copyright 2016-2018, Pulumi Corporation. // // 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 deploy import ( "context" "math" "sync" "github.com/blang/semver" uuid "github.com/gofrs/uuid" "github.com/pkg/errors" "github.com/pulumi/pulumi/pkg/v2/codegen/schema" "github.com/pulumi/pulumi/pkg/v2/resource/deploy/providers" "github.com/pulumi/pulumi/pkg/v2/resource/graph" "github.com/pulumi/pulumi/sdk/v2/go/common/diag" "github.com/pulumi/pulumi/sdk/v2/go/common/resource" "github.com/pulumi/pulumi/sdk/v2/go/common/resource/plugin" "github.com/pulumi/pulumi/sdk/v2/go/common/tokens" "github.com/pulumi/pulumi/sdk/v2/go/common/util/contract" "github.com/pulumi/pulumi/sdk/v2/go/common/util/result" ) // BackendClient provides an interface for retrieving information about other stacks. type BackendClient interface { // GetStackOutputs returns the outputs (if any) for the named stack or an error if the stack cannot be found. GetStackOutputs(ctx context.Context, name string) (resource.PropertyMap, error) // GetStackResourceOutputs returns the resource outputs for a stack, or an error if the stack // cannot be found. Resources are retrieved from the latest stack snapshot, which may include // ongoing updates. They are returned in a `PropertyMap` mapping resource URN to another // `Propertymap` with members `type` (containing the Pulumi type ID for the resource) and // `outputs` (containing the resource outputs themselves). GetStackResourceOutputs(ctx context.Context, stackName string) (resource.PropertyMap, error) } // Options controls the deployment process. type Options struct { Events Events // an optional events callback interface. Parallel int // the degree of parallelism for resource operations (<=1 for serial). Refresh bool // whether or not to refresh before executing the deployment. RefreshOnly bool // whether or not to exit after refreshing. RefreshTargets []resource.URN // The specific resources to refresh during a refresh op. ReplaceTargets []resource.URN // Specific resources to replace. DestroyTargets []resource.URN // Specific resources to destroy. UpdateTargets []resource.URN // Specific resources to update. TargetDependents bool // true if we're allowing things to proceed, even with unspecified targets TrustDependencies bool // whether or not to trust the resource dependency graph. UseLegacyDiff bool // whether or not to use legacy diffing behavior. } // DegreeOfParallelism returns the degree of parallelism that should be used during the // deployment process. func (o Options) DegreeOfParallelism() int { if o.Parallel <= 1 { return 1 } return o.Parallel } // InfiniteParallelism returns whether or not the requested level of parallelism is unbounded. func (o Options) InfiniteParallelism() bool { return o.Parallel == math.MaxInt32 } // StepExecutorEvents is an interface that can be used to hook resource lifecycle events. type StepExecutorEvents interface { OnResourceStepPre(step Step) (interface{}, error) OnResourceStepPost(ctx interface{}, step Step, status resource.Status, err error) error OnResourceOutputs(step Step) error } // PolicyEvents is an interface that can be used to hook policy violation events. type PolicyEvents interface { OnPolicyViolation(resource.URN, plugin.AnalyzeDiagnostic) } // Events is an interface that can be used to hook interesting engine events. type Events interface { StepExecutorEvents PolicyEvents } // PlanPendingOperationsError is an error returned from `NewPlan` if there exist pending operations in the // snapshot that we are preparing to operate upon. The engine does not allow any operations to be pending // when operating on a snapshot. type PlanPendingOperationsError struct { Operations []resource.Operation } func (p PlanPendingOperationsError) Error() string { return "one or more operations are currently pending" } type resourceMap struct { m sync.Map } func (m *resourceMap) set(urn resource.URN, state *resource.State) { m.m.Store(urn, state) } func (m *resourceMap) get(urn resource.URN) (*resource.State, bool) { s, ok := m.m.Load(urn) if !ok { return nil, false } return s.(*resource.State), true } func (m *resourceMap) mapRange(callback func(urn resource.URN, state *resource.State) bool) { m.m.Range(func(k, v interface{}) bool { return callback(k.(resource.URN), v.(*resource.State)) }) } // A Deployment manages the iterative computation and execution of a deployment based on a stream of goal states. // A running deployment emits events that indicate its progress. These events must be used to record the new state // of the deployment target. type Deployment struct { ctx *plugin.Context // the plugin context (for provider operations). target *Target // the deployment target. prev *Snapshot // the old resource snapshot for comparison. olds map[resource.URN]*resource.State // a map of all old resources. imports []Import // resources to import, if this is an import deployment. isImport bool // true if this is an import deployment. schemaLoader schema.Loader // the schema cache for this deployment, if any. source Source // the source of new resources. localPolicyPackPaths []string // the policy packs to run during this deployment's generation. preview bool // true if this deployment is to be previewed. depGraph *graph.DependencyGraph // the dependency graph of the old snapshot providers *providers.Registry // the provider registry for this deployment. news *resourceMap // the set of new resources generated by the deployment } // addDefaultProviders adds any necessary default provider definitions and references to the given snapshot. Version // information for these providers is sourced from the snapshot's manifest; inputs parameters are sourced from the // stack's configuration. func addDefaultProviders(target *Target, source Source, prev *Snapshot) error { if prev == nil { return nil } // Pull the versions we'll use for default providers from the snapshot's manifest. defaultProviderVersions := make(map[tokens.Package]*semver.Version) for _, p := range prev.Manifest.Plugins { defaultProviderVersions[tokens.Package(p.Name)] = p.Version } // Determine the necessary set of default providers and inject references to default providers as appropriate. // // We do this by scraping the snapshot for custom resources that does not reference a provider and adding // default providers for these resources' packages. Each of these resources is rewritten to reference the default // provider for its package. // // The configuration for each default provider is pulled from the stack's configuration information. var defaultProviders []*resource.State defaultProviderRefs := make(map[tokens.Package]providers.Reference) for _, res := range prev.Resources { if providers.IsProviderType(res.URN.Type()) || !res.Custom || res.Provider != "" { continue } pkg := res.URN.Type().Package() ref, ok := defaultProviderRefs[pkg] if !ok { inputs, err := target.GetPackageConfig(pkg) if err != nil { return errors.Errorf("could not fetch configuration for default provider '%v'", pkg) } if version, ok := defaultProviderVersions[pkg]; ok { inputs["version"] = resource.NewStringProperty(version.String()) } uuid, err := uuid.NewV4() if err != nil { return err } urn, id := defaultProviderURN(target, source, pkg), resource.ID(uuid.String()) ref, err = providers.NewReference(urn, id) contract.Assert(err == nil) provider := &resource.State{ Type: urn.Type(), URN: urn, Custom: true, ID: id, Inputs: inputs, Outputs: inputs, } defaultProviders = append(defaultProviders, provider) defaultProviderRefs[pkg] = ref } res.Provider = ref.String() } // If any default providers are necessary, prepend their definitions to the snapshot's resources. This trivially // guarantees that all default provider references name providers that precede the referent in the snapshot. if len(defaultProviders) != 0 { prev.Resources = append(defaultProviders, prev.Resources...) } return nil } // migrateProviders is responsible for adding default providers to old snapshots and filling in output properties for // providers that do not have them. func migrateProviders(target *Target, prev *Snapshot, source Source) error { // Add any necessary default provider references to the previous snapshot in order to accommodate stacks that were // created prior to the changes that added first-class providers. We do this here rather than in the migration // package s.t. the inputs to any default providers (which we fetch from the stacks's configuration) are as // accurate as possible. if err := addDefaultProviders(target, source, prev); err != nil { return err } // Migrate provider resources from the old, output-less format to the new format where all inputs are reflected as // outputs. if prev != nil { for _, res := range prev.Resources { // If we have no old outputs for a provider, use its old inputs as its old outputs. This handles the // scenario where the CLI is being upgraded from a version that did not reflect provider inputs to // provider outputs, and a provider is being upgraded from a version that did not implement DiffConfig to // a version that does. if providers.IsProviderType(res.URN.Type()) && len(res.Inputs) != 0 && len(res.Outputs) == 0 { res.Outputs = res.Inputs } } } return nil } func buildResourceMap(prev *Snapshot, preview bool) ([]*resource.State, map[resource.URN]*resource.State, error) { olds := make(map[resource.URN]*resource.State) if prev == nil { return nil, olds, nil } if prev.PendingOperations != nil && !preview { return nil, nil, PlanPendingOperationsError{prev.PendingOperations} } for _, oldres := range prev.Resources { // Ignore resources that are pending deletion; these should not be recorded in the LUT. if oldres.Delete { continue } urn := oldres.URN if olds[urn] != nil { return nil, nil, errors.Errorf("unexpected duplicate resource '%s'", urn) } olds[urn] = oldres } return prev.Resources, olds, nil } // NewDeployment creates a new deployment from a resource snapshot plus a package to evaluate. // // From the old and new states, it understands how to orchestrate an evaluation and analyze the resulting resources. // The deployment may be used to simply inspect a series of operations, or actually perform them; these operations are // generated based on analysis of the old and new states. If a resource exists in new, but not old, for example, it // results in a create; if it exists in both, but is different, it results in an update; and so on and so forth. // // Note that a deployment uses internal concurrency and parallelism in various ways, so it must be closed if for some // reason it isn't carried out to its final conclusion. This will result in cancellation and reclamation of resources. func NewDeployment(ctx *plugin.Context, target *Target, prev *Snapshot, source Source, localPolicyPackPaths []string, preview bool, backendClient BackendClient) (*Deployment, error) { contract.Assert(ctx != nil) contract.Assert(target != nil) contract.Assert(source != nil) if err := migrateProviders(target, prev, source); err != nil { return nil, err } // Produce a map of all old resources for fast access. // // NOTE: we can and do mutate prev.Resources, olds, and depGraph during execution after performing a refresh. See // deploymentExecutor.refresh for details. oldResources, olds, err := buildResourceMap(prev, preview) if err != nil { return nil, err } // Build the dependency graph for the old resources. depGraph := graph.NewDependencyGraph(oldResources) // Create a resource map for the deployment. newResources := &resourceMap{} // Create a new builtin provider. This provider implements features such as `getStack`. builtins := newBuiltinProvider(backendClient, newResources) // Create a new provider registry. Although we really only need to pass in any providers that were present in the // old resource list, the registry itself will filter out other sorts of resources when processing the prior state, // so we just pass all of the old resources. reg, err := providers.NewRegistry(ctx.Host, oldResources, preview, builtins) if err != nil { return nil, err } return &Deployment{ ctx: ctx, target: target, prev: prev, olds: olds, source: source, localPolicyPackPaths: localPolicyPackPaths, preview: preview, depGraph: depGraph, providers: reg, news: newResources, }, nil } func (d *Deployment) Ctx() *plugin.Context { return d.ctx } func (d *Deployment) Target() *Target { return d.target } func (d *Deployment) Diag() diag.Sink { return d.ctx.Diag } func (d *Deployment) Prev() *Snapshot { return d.prev } func (d *Deployment) Olds() map[resource.URN]*resource.State { return d.olds } func (d *Deployment) Source() Source { return d.source } func (d *Deployment) GetProvider(ref providers.Reference) (plugin.Provider, bool) { return d.providers.GetProvider(ref) } // generateURN generates a resource's URN from its parent, type, and name under the scope of the deployment's stack and // project. func (d *Deployment) generateURN(parent resource.URN, ty tokens.Type, name tokens.QName) resource.URN { // Use the resource goal state name to produce a globally unique URN. parentType := tokens.Type("") if parent != "" && parent.Type() != resource.RootStackType { // Skip empty parents and don't use the root stack type; otherwise, use the full qualified type. parentType = parent.QualifiedType() } return resource.NewURN(d.Target().Name, d.source.Project(), parentType, ty, name) } // defaultProviderURN generates the URN for the global provider given a package. func defaultProviderURN(target *Target, source Source, pkg tokens.Package) resource.URN { return resource.NewURN(target.Name, source.Project(), "", providers.MakeProviderType(pkg), "default") } // generateEventURN generates a URN for the resource associated with the given event. func (d *Deployment) generateEventURN(event SourceEvent) resource.URN { contract.Require(event != nil, "event != nil") switch e := event.(type) { case RegisterResourceEvent: goal := e.Goal() return d.generateURN(goal.Parent, goal.Type, goal.Name) case ReadResourceEvent: return d.generateURN(e.Parent(), e.Type(), e.Name()) case RegisterResourceOutputsEvent: return e.URN() default: return "" } } // Execute executes a deployment to completion, using the given cancellation context and running a preview or update. func (d *Deployment) Execute(ctx context.Context, opts Options, preview bool) result.Result { deploymentExec := &deploymentExecutor{deployment: d} return deploymentExec.Execute(ctx, opts, preview) }