2017-05-03 17:02:47 +02:00
|
|
|
package discovery
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2017-09-02 01:03:45 +02:00
|
|
|
"io"
|
2017-05-03 17:02:47 +02:00
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
2017-06-13 03:27:13 +02:00
|
|
|
"os"
|
2017-09-02 01:03:45 +02:00
|
|
|
"path/filepath"
|
2017-05-03 17:02:47 +02:00
|
|
|
"runtime"
|
2017-05-31 23:38:55 +02:00
|
|
|
"strconv"
|
2017-05-03 17:02:47 +02:00
|
|
|
"strings"
|
|
|
|
|
|
|
|
getter "github.com/hashicorp/go-getter"
|
2017-06-13 03:27:13 +02:00
|
|
|
multierror "github.com/hashicorp/go-multierror"
|
2018-02-28 17:40:43 +01:00
|
|
|
"github.com/hashicorp/terraform/httpclient"
|
2018-08-02 17:45:55 +02:00
|
|
|
"github.com/hashicorp/terraform/registry"
|
|
|
|
"github.com/hashicorp/terraform/registry/regsrc"
|
|
|
|
"github.com/hashicorp/terraform/registry/response"
|
|
|
|
"github.com/hashicorp/terraform/svchost/disco"
|
2017-08-14 13:32:48 +02:00
|
|
|
"github.com/mitchellh/cli"
|
2017-05-03 17:02:47 +02:00
|
|
|
)
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
// Releases are located by querying the terraform registry.
|
2017-05-03 17:02:47 +02:00
|
|
|
|
2017-06-09 19:56:31 +02:00
|
|
|
const protocolVersionHeader = "x-terraform-protocol-version"
|
2017-05-03 17:02:47 +02:00
|
|
|
|
2018-11-16 22:32:31 +01:00
|
|
|
const gpgVerificationError = `GPG signature verification error:
|
|
|
|
Terraform was unable to verify the GPG signature of the downloaded provider
|
|
|
|
files using the keys downloaded from the Terraform Registry. This may mean that
|
|
|
|
the publisher of the provider removed the key it was signed with, or that the
|
|
|
|
distributed files were changed after this version was released.`
|
|
|
|
|
2018-02-28 17:40:43 +01:00
|
|
|
var httpClient *http.Client
|
|
|
|
|
2018-08-02 17:45:55 +02:00
|
|
|
var errVersionNotFound = errors.New("version not found")
|
|
|
|
|
2018-02-28 17:40:43 +01:00
|
|
|
func init() {
|
|
|
|
httpClient = httpclient.New()
|
|
|
|
|
|
|
|
httpGetter := &getter.HttpGetter{
|
|
|
|
Client: httpClient,
|
|
|
|
Netrc: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
getter.Getters["http"] = httpGetter
|
|
|
|
getter.Getters["https"] = httpGetter
|
|
|
|
}
|
2017-06-01 20:32:33 +02:00
|
|
|
|
2017-06-13 03:22:47 +02:00
|
|
|
// An Installer maintains a local cache of plugins by downloading plugins
|
|
|
|
// from an online repository.
|
|
|
|
type Installer interface {
|
|
|
|
Get(name string, req Constraints) (PluginMeta, error)
|
2017-06-13 03:27:13 +02:00
|
|
|
PurgeUnused(used map[string]PluginMeta) (removed PluginMetaSet, err error)
|
2017-06-13 03:22:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ProviderInstaller is an Installer implementation that knows how to
|
|
|
|
// download Terraform providers from the official HashiCorp releases service
|
|
|
|
// into a local directory. The files downloaded are compliant with the
|
|
|
|
// naming scheme expected by FindPlugins, so the target directory of a
|
|
|
|
// provider installer can be used as one of several plugin discovery sources.
|
|
|
|
type ProviderInstaller struct {
|
|
|
|
Dir string
|
|
|
|
|
2017-09-02 01:03:45 +02:00
|
|
|
// Cache is used to access and update a local cache of plugins if non-nil.
|
|
|
|
// Can be nil to disable caching.
|
|
|
|
Cache PluginCache
|
|
|
|
|
2017-06-13 03:22:47 +02:00
|
|
|
PluginProtocolVersion uint
|
2017-06-17 16:52:30 +02:00
|
|
|
|
2017-07-03 23:56:11 +02:00
|
|
|
// OS and Arch specify the OS and architecture that should be used when
|
|
|
|
// installing plugins. These use the same labels as the runtime.GOOS and
|
|
|
|
// runtime.GOARCH variables respectively, and indeed the values of these
|
|
|
|
// are used as defaults if either of these is the empty string.
|
|
|
|
OS string
|
|
|
|
Arch string
|
|
|
|
|
2017-06-17 16:52:30 +02:00
|
|
|
// Skip checksum and signature verification
|
|
|
|
SkipVerify bool
|
2017-08-14 13:32:48 +02:00
|
|
|
|
|
|
|
Ui cli.Ui // Ui for output
|
2018-08-02 17:45:55 +02:00
|
|
|
|
|
|
|
// Services is a required *disco.Disco, which may have services and
|
|
|
|
// credentials pre-loaded.
|
|
|
|
Services *disco.Disco
|
|
|
|
|
|
|
|
// registry client
|
|
|
|
registry *registry.Client
|
2017-06-13 03:22:47 +02:00
|
|
|
}
|
|
|
|
|
2017-06-20 03:48:42 +02:00
|
|
|
// Get is part of an implementation of type Installer, and attempts to download
|
|
|
|
// and install a Terraform provider matching the given constraints.
|
|
|
|
//
|
|
|
|
// This method may return one of a number of sentinel errors from this
|
|
|
|
// package to indicate issues that are likely to be resolvable via user action:
|
|
|
|
//
|
|
|
|
// ErrorNoSuchProvider: no provider with the given name exists in the repository.
|
|
|
|
// ErrorNoSuitableVersion: the provider exists but no available version matches constraints.
|
|
|
|
// ErrorNoVersionCompatible: a plugin was found within the constraints but it is
|
|
|
|
// incompatible with the current Terraform version.
|
|
|
|
//
|
|
|
|
// These errors should be recognized and handled as special cases by the caller
|
|
|
|
// to present a suitable user-oriented error message.
|
|
|
|
//
|
|
|
|
// All other errors indicate an internal problem that is likely _not_ solvable
|
|
|
|
// through user action, or at least not within Terraform's scope. Error messages
|
|
|
|
// are produced under the assumption that if presented to the user they will
|
|
|
|
// be presented alongside context about what is being installed, and thus the
|
|
|
|
// error messages do not redundantly include such information.
|
2017-06-13 03:22:47 +02:00
|
|
|
func (i *ProviderInstaller) Get(provider string, req Constraints) (PluginMeta, error) {
|
2018-08-02 23:35:08 +02:00
|
|
|
// a little bit of initialization.
|
2018-08-02 17:45:55 +02:00
|
|
|
if i.OS == "" {
|
|
|
|
i.OS = runtime.GOOS
|
|
|
|
}
|
|
|
|
if i.Arch == "" {
|
|
|
|
i.Arch = runtime.GOARCH
|
|
|
|
}
|
|
|
|
if i.registry == nil {
|
2018-08-02 23:35:08 +02:00
|
|
|
i.registry = registry.NewClient(i.Services, nil)
|
2018-08-02 17:45:55 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
// get a full listing of versions for the requested provider
|
2018-08-02 17:45:55 +02:00
|
|
|
allVersions, err := i.listProviderVersions(provider)
|
|
|
|
|
2017-05-03 17:02:47 +02:00
|
|
|
// TODO: return multiple errors
|
|
|
|
if err != nil {
|
2018-08-09 00:04:51 +02:00
|
|
|
if registry.IsServiceNotProvided(err) {
|
|
|
|
return PluginMeta{}, err
|
|
|
|
}
|
2018-08-02 23:35:08 +02:00
|
|
|
return PluginMeta{}, ErrorNoSuchProvider
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
2018-08-02 17:45:55 +02:00
|
|
|
if len(allVersions.Versions) == 0 {
|
2017-06-20 03:48:42 +02:00
|
|
|
return PluginMeta{}, ErrorNoSuitableVersion
|
2017-05-31 23:38:55 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 17:45:55 +02:00
|
|
|
// Filter the list of plugin versions to those which meet the version constraints
|
|
|
|
versions := allowedVersions(allVersions, req)
|
2017-05-31 23:38:55 +02:00
|
|
|
if len(versions) == 0 {
|
2017-06-20 03:48:42 +02:00
|
|
|
return PluginMeta{}, ErrorNoSuitableVersion
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
// sort them newest to oldest. The newest version wins!
|
2018-08-09 19:05:17 +02:00
|
|
|
response.ProviderVersionCollection(versions).Sort()
|
2018-08-02 23:35:08 +02:00
|
|
|
|
2018-08-07 23:45:19 +02:00
|
|
|
// if the chosen provider version does not support the requested platform,
|
|
|
|
// filter the list of acceptable versions to those that support that platform
|
|
|
|
if err := i.checkPlatformCompatibility(versions[0]); err != nil {
|
|
|
|
versions = i.platformCompatibleVersions(versions)
|
|
|
|
if len(versions) == 0 {
|
|
|
|
return PluginMeta{}, ErrorNoVersionCompatibleWithPlatform
|
|
|
|
}
|
2018-08-02 23:35:08 +02:00
|
|
|
}
|
|
|
|
|
2018-08-07 23:45:19 +02:00
|
|
|
// we now have a winning platform-compatible version
|
|
|
|
versionMeta := versions[0]
|
|
|
|
v := VersionStr(versionMeta.Version).MustParse()
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
// check protocol compatibility
|
|
|
|
if err := i.checkPluginProtocol(versionMeta); err != nil {
|
|
|
|
closestMatch, err := i.findProtocolCompatibleVersion(versions)
|
|
|
|
if err == nil {
|
|
|
|
if err := i.checkPlatformCompatibility(closestMatch); err != nil {
|
2018-08-07 23:45:19 +02:00
|
|
|
// At this point, we have protocol compatibility but not platform,
|
|
|
|
// and we give up trying to find a compatible version.
|
|
|
|
// This error message should be improved.
|
2018-08-02 23:35:08 +02:00
|
|
|
return PluginMeta{}, ErrorNoSuitableVersion
|
2017-06-13 03:22:47 +02:00
|
|
|
}
|
2018-08-07 23:45:19 +02:00
|
|
|
// TODO: This is a placeholder UI message. We must choose to send
|
|
|
|
// providerProtocolTooOld or providerProtocolTooNew message to the UI
|
2018-08-02 23:35:08 +02:00
|
|
|
i.Ui.Error(fmt.Sprintf("the most recent version of %s to match your platform is %s", provider, closestMatch))
|
|
|
|
return PluginMeta{}, ErrorNoVersionCompatible
|
2018-08-02 17:45:55 +02:00
|
|
|
}
|
2018-08-02 23:35:08 +02:00
|
|
|
return PluginMeta{}, ErrorNoVersionCompatibleWithPlatform
|
2018-08-02 17:45:55 +02:00
|
|
|
}
|
2017-06-13 03:22:47 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
downloadURLs, err := i.listProviderDownloadURLs(provider, versionMeta.Version)
|
2018-08-02 17:45:55 +02:00
|
|
|
providerURL := downloadURLs.DownloadURL
|
2017-06-13 03:22:47 +02:00
|
|
|
|
2018-11-16 20:05:38 +01:00
|
|
|
i.Ui.Info(fmt.Sprintf("- Downloading plugin for provider %q (%s)...", provider, versionMeta.Version))
|
|
|
|
log.Printf("[DEBUG] getting provider %q version %q", provider, versionMeta.Version)
|
|
|
|
|
2018-08-02 17:45:55 +02:00
|
|
|
if !i.SkipVerify {
|
2018-08-02 23:35:08 +02:00
|
|
|
sha256, err := i.getProviderChecksum(downloadURLs)
|
2018-08-02 17:45:55 +02:00
|
|
|
if err != nil {
|
|
|
|
return PluginMeta{}, err
|
|
|
|
}
|
2017-06-13 03:22:47 +02:00
|
|
|
|
2018-08-02 17:45:55 +02:00
|
|
|
// add the checksum parameter for go-getter to verify the download for us.
|
|
|
|
if sha256 != "" {
|
|
|
|
providerURL = providerURL + "?checksum=sha256:" + sha256
|
2017-05-31 23:38:55 +02:00
|
|
|
}
|
2018-08-02 17:45:55 +02:00
|
|
|
}
|
2017-05-31 23:38:55 +02:00
|
|
|
|
2018-08-02 17:45:55 +02:00
|
|
|
err = i.install(provider, v, providerURL)
|
|
|
|
if err != nil {
|
|
|
|
return PluginMeta{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find what we just installed
|
|
|
|
// (This is weird, because go-getter doesn't directly return
|
|
|
|
// information about what was extracted, and we just extracted
|
|
|
|
// the archive directly into a shared dir here.)
|
|
|
|
log.Printf("[DEBUG] looking for the %s %s plugin we just installed", provider, versionMeta.Version)
|
|
|
|
metas := FindPlugins("provider", []string{i.Dir})
|
|
|
|
log.Printf("[DEBUG] all plugins found %#v", metas)
|
|
|
|
metas, _ = metas.ValidateVersions()
|
|
|
|
metas = metas.WithName(provider).WithVersion(v)
|
|
|
|
log.Printf("[DEBUG] filtered plugins %#v", metas)
|
|
|
|
if metas.Count() == 0 {
|
|
|
|
// This should never happen. Suggests that the release archive
|
|
|
|
// contains an executable file whose name doesn't match the
|
|
|
|
// expected convention.
|
|
|
|
return PluginMeta{}, fmt.Errorf(
|
|
|
|
"failed to find installed plugin version %s; this is a bug in Terraform and should be reported",
|
|
|
|
versionMeta.Version,
|
|
|
|
)
|
2017-06-01 23:17:14 +02:00
|
|
|
}
|
2017-05-31 23:38:55 +02:00
|
|
|
|
2018-08-02 17:45:55 +02:00
|
|
|
if metas.Count() > 1 {
|
|
|
|
// This should also never happen, and suggests that a
|
|
|
|
// particular version was re-released with a different
|
|
|
|
// executable filename. We consider releases as immutable, so
|
|
|
|
// this is an error.
|
|
|
|
return PluginMeta{}, fmt.Errorf(
|
|
|
|
"multiple plugins installed for version %s; this is a bug in Terraform and should be reported",
|
|
|
|
versionMeta.Version,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// By now we know we have exactly one meta, and so "Newest" will
|
|
|
|
// return that one.
|
|
|
|
return metas.Newest(), nil
|
|
|
|
|
2017-06-01 23:17:14 +02:00
|
|
|
}
|
2017-05-31 23:38:55 +02:00
|
|
|
|
2017-09-02 01:03:45 +02:00
|
|
|
func (i *ProviderInstaller) install(provider string, version Version, url string) error {
|
|
|
|
if i.Cache != nil {
|
|
|
|
log.Printf("[DEBUG] looking for provider %s %s in plugin cache", provider, version)
|
|
|
|
cached := i.Cache.CachedPluginPath("provider", provider, version)
|
|
|
|
if cached == "" {
|
|
|
|
log.Printf("[DEBUG] %s %s not yet in cache, so downloading %s", provider, version, url)
|
|
|
|
err := getter.Get(i.Cache.InstallDir(), url)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// should now be in cache
|
|
|
|
cached = i.Cache.CachedPluginPath("provider", provider, version)
|
|
|
|
if cached == "" {
|
|
|
|
// should never happen if the getter is behaving properly
|
|
|
|
// and the plugins are packaged properly.
|
|
|
|
return fmt.Errorf("failed to find downloaded plugin in cache %s", i.Cache.InstallDir())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Link or copy the cached binary into our install dir so the
|
2018-08-07 23:45:19 +02:00
|
|
|
// normal resolution machinery can find it.
|
2017-09-02 01:03:45 +02:00
|
|
|
filename := filepath.Base(cached)
|
|
|
|
targetPath := filepath.Join(i.Dir, filename)
|
|
|
|
|
|
|
|
log.Printf("[DEBUG] installing %s %s to %s from local cache %s", provider, version, targetPath, cached)
|
|
|
|
|
|
|
|
// Delete if we can. If there's nothing there already then no harm done.
|
|
|
|
// This is important because we can't create a link if there's
|
|
|
|
// already a file of the same name present.
|
|
|
|
// (any other error here we'll catch below when we try to write here)
|
|
|
|
os.Remove(targetPath)
|
|
|
|
|
|
|
|
// We don't attempt linking on Windows because links are not
|
|
|
|
// comprehensively supported by all tools/apps in Windows and
|
|
|
|
// so we choose to be conservative to avoid creating any
|
|
|
|
// weird issues for Windows users.
|
|
|
|
linkErr := errors.New("link not supported for Windows") // placeholder error, never actually returned
|
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
// Try hard linking first. Hard links are preferable because this
|
|
|
|
// creates a self-contained directory that doesn't depend on the
|
|
|
|
// cache after install.
|
|
|
|
linkErr = os.Link(cached, targetPath)
|
|
|
|
|
|
|
|
// If that failed, try a symlink. This _does_ depend on the cache
|
|
|
|
// after install, so the user must manage the cache more carefully
|
|
|
|
// in this case, but avoids creating redundant copies of the
|
|
|
|
// plugins on disk.
|
|
|
|
if linkErr != nil {
|
|
|
|
linkErr = os.Symlink(cached, targetPath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we still have an error then we'll try a copy as a fallback.
|
|
|
|
// In this case either the OS is Windows or the target filesystem
|
|
|
|
// can't support symlinks.
|
|
|
|
if linkErr != nil {
|
|
|
|
srcFile, err := os.Open(cached)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to open cached plugin %s: %s", cached, err)
|
|
|
|
}
|
|
|
|
defer srcFile.Close()
|
|
|
|
|
|
|
|
destFile, err := os.OpenFile(targetPath, os.O_TRUNC|os.O_CREATE|os.O_WRONLY, os.ModePerm)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to create %s: %s", targetPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = io.Copy(destFile, srcFile)
|
|
|
|
if err != nil {
|
|
|
|
destFile.Close()
|
|
|
|
return fmt.Errorf("failed to copy cached plugin from %s to %s: %s", cached, targetPath, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = destFile.Close()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("error creating %s: %s", targetPath, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// One way or another, by the time we get here we should have either
|
|
|
|
// a link or a copy of the cached plugin within i.Dir, as expected.
|
|
|
|
} else {
|
|
|
|
log.Printf("[DEBUG] plugin cache is disabled, so downloading %s %s from %s", provider, version, url)
|
|
|
|
err := getter.Get(i.Dir, url)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-13 03:27:13 +02:00
|
|
|
func (i *ProviderInstaller) PurgeUnused(used map[string]PluginMeta) (PluginMetaSet, error) {
|
|
|
|
purge := make(PluginMetaSet)
|
|
|
|
|
|
|
|
present := FindPlugins("provider", []string{i.Dir})
|
|
|
|
for meta := range present {
|
|
|
|
chosen, ok := used[meta.Name]
|
|
|
|
if !ok {
|
|
|
|
purge.Add(meta)
|
|
|
|
}
|
|
|
|
if chosen.Path != meta.Path {
|
|
|
|
purge.Add(meta)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
removed := make(PluginMetaSet)
|
|
|
|
var errs error
|
|
|
|
for meta := range purge {
|
|
|
|
path := meta.Path
|
|
|
|
err := os.Remove(path)
|
|
|
|
if err != nil {
|
|
|
|
errs = multierror.Append(errs, fmt.Errorf(
|
|
|
|
"failed to remove unused provider plugin %s: %s",
|
|
|
|
path, err,
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
removed.Add(meta)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return removed, errs
|
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
func (i *ProviderInstaller) getProviderChecksum(urls *response.TerraformProviderPlatformLocation) (string, error) {
|
2018-11-14 20:52:46 +01:00
|
|
|
// Get SHA256SUMS file.
|
|
|
|
shasums, err := getFile(urls.ShasumsURL)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("error fetching checksums: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get SHA256SUMS.sig file.
|
|
|
|
signature, err := getFile(urls.ShasumsSignatureURL)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("error fetching checksums signature: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify GPG signature.
|
|
|
|
asciiArmor := urls.SigningKeys.GPGASCIIArmor()
|
|
|
|
signer, err := verifySig(shasums, signature, asciiArmor)
|
2017-07-03 23:56:11 +02:00
|
|
|
if err != nil {
|
2018-11-16 22:32:31 +01:00
|
|
|
log.Printf("[ERROR] error verifying signature: %s", err)
|
|
|
|
return "", fmt.Errorf(gpgVerificationError)
|
2017-07-03 23:56:11 +02:00
|
|
|
}
|
|
|
|
|
2018-11-14 20:52:46 +01:00
|
|
|
// Display identity for GPG key which succeeded verifying the signature.
|
|
|
|
// This could also be used to display to the user with i.Ui.Info().
|
|
|
|
identities := []string{}
|
2018-11-16 22:32:31 +01:00
|
|
|
for k := range signer.Identities {
|
2018-11-14 20:52:46 +01:00
|
|
|
identities = append(identities, k)
|
|
|
|
}
|
|
|
|
identity := strings.Join(identities, ", ")
|
|
|
|
log.Printf("[DEBUG] verified GPG signature with key from %s", identity)
|
|
|
|
|
|
|
|
// Extract checksum for this os/arch platform binary.
|
|
|
|
return checksumForFile(shasums, urls.Filename), nil
|
2017-05-31 23:38:55 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 17:45:55 +02:00
|
|
|
// list all versions available for the named provider
|
|
|
|
func (i *ProviderInstaller) listProviderVersions(name string) (*response.TerraformProviderVersions, error) {
|
|
|
|
provider := regsrc.NewTerraformProvider(name, i.OS, i.Arch)
|
|
|
|
versions, err := i.registry.TerraformProviderVersions(provider)
|
|
|
|
return versions, err
|
2017-07-03 23:56:11 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
func (i *ProviderInstaller) listProviderDownloadURLs(name, version string) (*response.TerraformProviderPlatformLocation, error) {
|
|
|
|
urls, err := i.registry.TerraformProviderLocation(regsrc.NewTerraformProvider(name, i.OS, i.Arch), version)
|
|
|
|
if urls == nil {
|
|
|
|
return nil, fmt.Errorf("No download urls found for provider %s", name)
|
|
|
|
}
|
|
|
|
return urls, err
|
|
|
|
}
|
2017-05-04 20:37:16 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
// REVIEWER QUESTION: this ends up swallowing a bunch of errors from
|
|
|
|
// checkPluginProtocol. Do they need to be percolated up better, or would
|
|
|
|
// debug messages would suffice in these situations?
|
|
|
|
func (i *ProviderInstaller) findProtocolCompatibleVersion(versions []*response.TerraformProviderVersion) (*response.TerraformProviderVersion, error) {
|
|
|
|
for _, version := range versions {
|
|
|
|
if err := i.checkPluginProtocol(version); err == nil {
|
|
|
|
return version, nil
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 23:35:08 +02:00
|
|
|
return nil, ErrorNoVersionCompatible
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
func (i *ProviderInstaller) checkPluginProtocol(versionMeta *response.TerraformProviderVersion) error {
|
|
|
|
// TODO: should this be a different error? We should probably differentiate between
|
|
|
|
// no compatible versions and no protocol versions listed at all
|
|
|
|
if len(versionMeta.Protocols) == 0 {
|
|
|
|
return fmt.Errorf("no plugin protocol versions listed")
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
2017-06-20 03:48:42 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
protoString := strconv.Itoa(int(i.PluginProtocolVersion))
|
|
|
|
protocolVersion, err := VersionStr(protoString).Parse()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invalid plugin protocol version: %q", i.PluginProtocolVersion)
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
2018-08-02 23:35:08 +02:00
|
|
|
protocolConstraint, err := protocolVersion.MinorUpgradeConstraintStr().Parse()
|
2017-05-03 17:02:47 +02:00
|
|
|
if err != nil {
|
2018-08-02 23:35:08 +02:00
|
|
|
// This should not fail if the preceding function succeeded.
|
|
|
|
return fmt.Errorf("invalid plugin protocol version: %q", protocolVersion.String())
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
for _, p := range versionMeta.Protocols {
|
|
|
|
proPro, err := VersionStr(p).Parse()
|
|
|
|
if err != nil {
|
|
|
|
// invalid protocol reported by the registry. Move along.
|
|
|
|
log.Printf("[WARN] invalid provider protocol version %q found in the registry", versionMeta.Version)
|
|
|
|
continue
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
2018-08-02 23:35:08 +02:00
|
|
|
// success!
|
|
|
|
if protocolConstraint.Allows(proPro) {
|
|
|
|
return nil
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
return ErrorNoVersionCompatible
|
2017-05-31 23:38:55 +02:00
|
|
|
}
|
2017-05-03 17:02:47 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
// REVIEWER QUESTION (again): this ends up swallowing a bunch of errors from
|
|
|
|
// checkPluginProtocol. Do they need to be percolated up better, or would
|
|
|
|
// debug messages would suffice in these situations?
|
|
|
|
func (i *ProviderInstaller) findPlatformCompatibleVersion(versions []*response.TerraformProviderVersion) (*response.TerraformProviderVersion, error) {
|
|
|
|
for _, version := range versions {
|
|
|
|
if err := i.checkPlatformCompatibility(version); err == nil {
|
|
|
|
return version, nil
|
|
|
|
}
|
|
|
|
}
|
2017-05-03 17:02:47 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
return nil, ErrorNoVersionCompatibleWithPlatform
|
|
|
|
}
|
|
|
|
|
2018-08-07 23:45:19 +02:00
|
|
|
// platformCompatibleVersions returns a list of provider versions that are
|
|
|
|
// compatible with the requested platform.
|
|
|
|
func (i *ProviderInstaller) platformCompatibleVersions(versions []*response.TerraformProviderVersion) []*response.TerraformProviderVersion {
|
|
|
|
var v []*response.TerraformProviderVersion
|
|
|
|
for _, version := range versions {
|
|
|
|
if err := i.checkPlatformCompatibility(version); err == nil {
|
|
|
|
v = append(v, version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
func (i *ProviderInstaller) checkPlatformCompatibility(versionMeta *response.TerraformProviderVersion) error {
|
|
|
|
if len(versionMeta.Platforms) == 0 {
|
|
|
|
return fmt.Errorf("no supported provider platforms listed")
|
|
|
|
}
|
|
|
|
for _, p := range versionMeta.Platforms {
|
|
|
|
if p.Arch == i.Arch && p.OS == i.OS {
|
|
|
|
return nil
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
|
|
|
}
|
2018-08-02 23:35:08 +02:00
|
|
|
return fmt.Errorf("version %s does not support the requested platform %s_%s", versionMeta.Version, i.OS, i.Arch)
|
|
|
|
}
|
|
|
|
|
|
|
|
// take the list of available versions for a plugin, and filter out those that
|
|
|
|
// don't fit the constraints.
|
|
|
|
func allowedVersions(available *response.TerraformProviderVersions, required Constraints) []*response.TerraformProviderVersion {
|
|
|
|
var allowed []*response.TerraformProviderVersion
|
2017-05-03 17:02:47 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
for _, v := range available.Versions {
|
|
|
|
version, err := VersionStr(v.Version).Parse()
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("[WARN] invalid version found for %q: %s", available.ID, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if required.Allows(version) {
|
|
|
|
allowed = append(allowed, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return allowed
|
2017-05-03 17:02:47 +02:00
|
|
|
}
|
2017-06-17 16:52:30 +02:00
|
|
|
|
|
|
|
func checksumForFile(sums []byte, name string) string {
|
|
|
|
for _, line := range strings.Split(string(sums), "\n") {
|
|
|
|
parts := strings.Fields(line)
|
|
|
|
if len(parts) > 1 && parts[1] == name {
|
|
|
|
return parts[0]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func getFile(url string) ([]byte, error) {
|
|
|
|
resp, err := httpClient.Get(url)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
return nil, fmt.Errorf("%s", resp.Status)
|
|
|
|
}
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return data, err
|
|
|
|
}
|
|
|
|
return data, nil
|
|
|
|
}
|
2017-08-14 13:32:48 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
// ProviderProtocolTooOld is a message sent to the CLI UI if the provider's
|
|
|
|
// supported protocol versions are too old for the user's version of terraform,
|
|
|
|
// but an older version of the provider is compatible.
|
|
|
|
const providerProtocolTooOld = `Provider %q v%s is not compatible with Terraform %s.
|
2018-08-02 17:45:55 +02:00
|
|
|
|
2018-08-02 23:35:08 +02:00
|
|
|
Provider version %s is the earliest compatible version.
|
|
|
|
Select it with the following version constraint:
|
|
|
|
|
|
|
|
version = %q
|
|
|
|
`
|
|
|
|
|
|
|
|
// ProviderProtocolTooNew is a message sent to the CLI UI if the provider's
|
|
|
|
// supported protocol versions are too new for the user's version of terraform,
|
|
|
|
// and the user could either upgrade terraform or choose an older version of the
|
|
|
|
// provider
|
|
|
|
const providerProtocolTooNew = `Provider %q v%s is not compatible with Terraform %s.
|
|
|
|
|
|
|
|
Provider version v%s is the latest compatible version. Select
|
|
|
|
it with the following constraint:
|
|
|
|
|
|
|
|
version = %q
|
|
|
|
|
|
|
|
Alternatively, upgrade to the latest version of Terraform for compatibility with newer provider releases.
|
|
|
|
`
|