2019-05-31 08:27:41 -04:00
|
|
|
//go:generate struct-markdown
|
2019-10-14 10:43:59 -04:00
|
|
|
//go:generate mapstructure-to-hcl2 -type Config
|
2019-05-31 08:27:41 -04:00
|
|
|
|
2019-01-11 17:06:15 -05:00
|
|
|
package vagrant
|
|
|
|
|
|
|
|
import (
|
2019-03-22 09:53:28 -04:00
|
|
|
"context"
|
2019-01-11 17:06:15 -05:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
"os"
|
2019-02-07 17:35:01 -05:00
|
|
|
"path/filepath"
|
2019-01-11 17:06:15 -05:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
"github.com/hashicorp/hcl/v2/hcldec"
|
2019-01-11 17:06:15 -05:00
|
|
|
"github.com/hashicorp/packer/common"
|
|
|
|
"github.com/hashicorp/packer/common/bootcommand"
|
|
|
|
"github.com/hashicorp/packer/helper/communicator"
|
|
|
|
"github.com/hashicorp/packer/helper/config"
|
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
|
|
|
"github.com/hashicorp/packer/packer"
|
|
|
|
"github.com/hashicorp/packer/template/interpolate"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Builder implements packer.Builder and builds the actual VirtualBox
|
|
|
|
// images.
|
|
|
|
type Builder struct {
|
2019-12-17 05:25:56 -05:00
|
|
|
config Config
|
2019-01-11 17:06:15 -05:00
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
common.HTTPConfig `mapstructure:",squash"`
|
|
|
|
common.ISOConfig `mapstructure:",squash"`
|
|
|
|
common.FloppyConfig `mapstructure:",squash"`
|
|
|
|
bootcommand.BootConfig `mapstructure:",squash"`
|
2019-10-14 10:12:09 -04:00
|
|
|
|
|
|
|
Comm communicator.Config `mapstructure:",squash"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// The directory to create that will contain your output box. We always
|
|
|
|
// create this directory and run from inside of it to prevent Vagrant init
|
|
|
|
// collisions. If unset, it will be set to packer- plus your buildname.
|
2019-05-28 11:50:58 -04:00
|
|
|
OutputDir string `mapstructure:"output_dir" required:"false"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// URL of the vagrant box to use, or the name of the vagrant box.
|
|
|
|
// hashicorp/precise64, ./mylocalbox.box and https://example.com/my-box.box
|
|
|
|
// are all valid source boxes. If your source is a .box file, whether
|
|
|
|
// locally or from a URL like the latter example above, you will also need
|
|
|
|
// to provide a box_name. This option is required, unless you set
|
|
|
|
// global_id. You may only set one or the other, not both.
|
2019-05-28 11:50:58 -04:00
|
|
|
SourceBox string `mapstructure:"source_path" required:"true"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// the global id of a Vagrant box already added to Vagrant on your system.
|
|
|
|
// You can find the global id of your Vagrant boxes using the command
|
|
|
|
// vagrant global-status; your global_id will be a 7-digit number and
|
2019-05-28 11:50:58 -04:00
|
|
|
// letter comination that you'll find in the leftmost column of the
|
|
|
|
// global-status output. If you choose to use global_id instead of
|
|
|
|
// source_box, Packer will skip the Vagrant initialize and add steps, and
|
|
|
|
// simply launch the box directly using the global id.
|
|
|
|
GlobalID string `mapstructure:"global_id" required:"true"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// The checksum for the .box file. The type of the checksum is specified
|
|
|
|
// with checksum_type, documented below.
|
2019-05-28 11:50:58 -04:00
|
|
|
Checksum string `mapstructure:"checksum" required:"false"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// The type of the checksum specified in checksum. Valid values are none,
|
|
|
|
// md5, sha1, sha256, or sha512. Although the checksum will not be verified
|
|
|
|
// when checksum_type is set to "none", this is not recommended since OVA
|
|
|
|
// files can be very large and corruption does happen from time to time.
|
2019-05-28 11:50:58 -04:00
|
|
|
ChecksumType string `mapstructure:"checksum_type" required:"false"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// if your source_box is a boxfile that we need to add to Vagrant, this is
|
|
|
|
// the name to give it. If left blank, will default to "packer_" plus your
|
|
|
|
// buildname.
|
2019-05-28 11:50:58 -04:00
|
|
|
BoxName string `mapstructure:"box_name" required:"false"`
|
2019-10-30 16:27:34 -04:00
|
|
|
// If true, Vagrant will automatically insert a keypair to use for SSH,
|
|
|
|
// replacing Vagrant's default insecure key inside the machine if detected.
|
|
|
|
// By default, Packer sets this to false.
|
|
|
|
InsertKey bool `mapstructure:"insert_key" required:"false"`
|
2019-05-28 11:50:58 -04:00
|
|
|
// The vagrant provider.
|
|
|
|
// This parameter is required when source_path have more than one provider,
|
|
|
|
// or when using vagrant-cloud post-processor. Defaults to unset.
|
|
|
|
Provider string `mapstructure:"provider" required:"false"`
|
2019-01-11 17:06:15 -05:00
|
|
|
|
|
|
|
Communicator string `mapstructure:"communicator"`
|
|
|
|
|
|
|
|
// Options for the "vagrant init" command
|
|
|
|
|
2019-05-28 11:50:58 -04:00
|
|
|
// What vagrantfile to use
|
|
|
|
VagrantfileTpl string `mapstructure:"vagrantfile_template"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// Whether to halt, suspend, or destroy the box when the build has
|
|
|
|
// completed. Defaults to "halt"
|
2019-05-28 11:50:58 -04:00
|
|
|
TeardownMethod string `mapstructure:"teardown_method" required:"false"`
|
|
|
|
// What box version to use when initializing Vagrant.
|
|
|
|
BoxVersion string `mapstructure:"box_version" required:"false"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// a path to a golang template for a vagrantfile. Our default template can
|
2019-10-30 16:36:56 -04:00
|
|
|
// be found here. The template variables available to you are
|
|
|
|
// {{ .BoxName }}, {{ .SyncedFolder }}, and {{.InsertKey}}, which
|
|
|
|
// correspond to the Packer options box_name, synced_folder, and insert_key.
|
2019-05-28 11:50:58 -04:00
|
|
|
Template string `mapstructure:"template" required:"false"`
|
2019-01-11 17:06:15 -05:00
|
|
|
|
2019-05-28 11:50:58 -04:00
|
|
|
SyncedFolder string `mapstructure:"synced_folder"`
|
2019-06-05 10:46:33 -04:00
|
|
|
// Don't call "vagrant add" to add the box to your local environment; this
|
|
|
|
// is necessary if you want to launch a box that is already added to your
|
|
|
|
// vagrant environment.
|
2019-05-28 11:50:58 -04:00
|
|
|
SkipAdd bool `mapstructure:"skip_add" required:"false"`
|
|
|
|
// Equivalent to setting the
|
|
|
|
// --cacert
|
|
|
|
// option in vagrant add; defaults to unset.
|
|
|
|
AddCACert string `mapstructure:"add_cacert" required:"false"`
|
|
|
|
// Equivalent to setting the
|
|
|
|
// --capath option
|
|
|
|
// in vagrant add; defaults to unset.
|
|
|
|
AddCAPath string `mapstructure:"add_capath" required:"false"`
|
|
|
|
// Equivalent to setting the
|
|
|
|
// --cert option in
|
|
|
|
// vagrant add; defaults to unset.
|
|
|
|
AddCert string `mapstructure:"add_cert" required:"false"`
|
|
|
|
// Equivalent to setting the
|
|
|
|
// --clean flag in
|
|
|
|
// vagrant add; defaults to unset.
|
|
|
|
AddClean bool `mapstructure:"add_clean" required:"false"`
|
|
|
|
// Equivalent to setting the
|
|
|
|
// --force flag in
|
|
|
|
// vagrant add; defaults to unset.
|
|
|
|
AddForce bool `mapstructure:"add_force" required:"false"`
|
|
|
|
// Equivalent to setting the
|
|
|
|
// --insecure flag in
|
|
|
|
// vagrant add; defaults to unset.
|
|
|
|
AddInsecure bool `mapstructure:"add_insecure" required:"false"`
|
|
|
|
// if true, Packer will not call vagrant package to
|
|
|
|
// package your base box into its own standalone .box file.
|
|
|
|
SkipPackage bool `mapstructure:"skip_package" required:"false"`
|
2019-01-11 17:06:15 -05:00
|
|
|
OutputVagrantfile string `mapstructure:"output_vagrantfile"`
|
|
|
|
PackageInclude []string `mapstructure:"package_include"`
|
|
|
|
|
|
|
|
ctx interpolate.Context
|
|
|
|
}
|
|
|
|
|
2019-12-17 05:25:56 -05:00
|
|
|
func (b *Builder) ConfigSpec() hcldec.ObjectSpec { return b.config.FlatMapstructure().HCL2Spec() }
|
|
|
|
|
2019-12-17 00:23:05 -05:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, []string, error) {
|
2019-01-11 17:06:15 -05:00
|
|
|
err := config.Decode(&b.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
|
|
|
InterpolateContext: &b.config.ctx,
|
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{
|
|
|
|
"boot_command",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, raws...)
|
|
|
|
if err != nil {
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, nil, err
|
2019-01-11 17:06:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Accumulate any errors and warnings
|
|
|
|
var errs *packer.MultiError
|
|
|
|
warnings := make([]string, 0)
|
|
|
|
|
|
|
|
if b.config.OutputDir == "" {
|
|
|
|
b.config.OutputDir = fmt.Sprintf("output-%s", b.config.PackerBuildName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.Comm.SSHTimeout == 0 {
|
|
|
|
b.config.Comm.SSHTimeout = 10 * time.Minute
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.Comm.Type != "ssh" {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf(`The Vagrant builder currently only supports the ssh communicator"`))
|
|
|
|
}
|
2019-01-24 19:56:57 -05:00
|
|
|
// The box isn't a namespace like you'd pull from vagrant cloud
|
|
|
|
if b.config.BoxName == "" {
|
|
|
|
b.config.BoxName = fmt.Sprintf("packer_%s", b.config.PackerBuildName)
|
|
|
|
}
|
|
|
|
|
|
|
|
if b.config.SourceBox == "" {
|
2019-01-25 15:32:44 -05:00
|
|
|
if b.config.GlobalID == "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, fmt.Errorf("source_path is required unless you have set global_id"))
|
|
|
|
}
|
2019-01-24 19:56:57 -05:00
|
|
|
} else {
|
2019-01-25 15:32:44 -05:00
|
|
|
if b.config.GlobalID != "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, fmt.Errorf("You may either set global_id or source_path but not both"))
|
|
|
|
}
|
|
|
|
if strings.HasSuffix(b.config.SourceBox, ".box") {
|
Use the hashicorp/go-getter to download files
* removed packer.Cache and references since packer.Cache is never used except in the download step. The download step now uses the new func packer.CachePath(targetPath) for this, the behavior is the same.
* removed download code from packer that was reimplemented into the go-getter library: progress bar, http download restart, checksuming from file, skip already downloaded files, symlinking, make a download cancellable by context.
* on windows if packer is running without symlinking rights and we are getting a local file, the file will be copied instead to avoid errors.
* added unit tests for step_download that are now CI tested on windows, mac & linux.
* files are now downloaded under cache dir `sha1(filename + "?checksum=" + checksum) + file_extension`
* since the output dir is based on the source url and the checksum, when the checksum fails, the file is auto deleted.
* a download file is protected and locked by a file lock,
* updated docs
* updated go modules and vendors
2019-03-13 07:11:58 -04:00
|
|
|
if _, err := os.Stat(b.config.SourceBox); err != nil {
|
|
|
|
packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Source box '%s' needs to exist at time of config validation! %v", b.config.SourceBox, err))
|
2019-01-24 19:56:57 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-11 17:06:15 -05:00
|
|
|
|
2019-11-04 18:15:37 -05:00
|
|
|
if b.config.OutputVagrantfile != "" {
|
|
|
|
b.config.OutputVagrantfile, err = filepath.Abs(b.config.OutputVagrantfile)
|
|
|
|
if err != nil {
|
|
|
|
packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("unable to determine absolute path for output vagrantfile: %s", err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-11 17:06:15 -05:00
|
|
|
if b.config.TeardownMethod == "" {
|
2019-01-25 15:32:44 -05:00
|
|
|
// If we're using a box that's already opened on the system, don't
|
|
|
|
// automatically destroy it. If we open the box ourselves, then go ahead
|
|
|
|
// and kill it by default.
|
|
|
|
if b.config.GlobalID != "" {
|
|
|
|
b.config.TeardownMethod = "halt"
|
|
|
|
} else {
|
|
|
|
b.config.TeardownMethod = "destroy"
|
|
|
|
}
|
2019-01-11 17:06:15 -05:00
|
|
|
} else {
|
|
|
|
matches := false
|
|
|
|
for _, name := range []string{"halt", "suspend", "destroy"} {
|
|
|
|
if strings.ToLower(b.config.TeardownMethod) == name {
|
|
|
|
matches = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !matches {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf(`TeardownMethod must be "halt", "suspend", or "destroy"`))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, warnings, errs
|
2019-01-11 17:06:15 -05:00
|
|
|
}
|
|
|
|
|
2019-12-17 00:23:05 -05:00
|
|
|
return nil, warnings, nil
|
2019-01-11 17:06:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run executes a Packer build and returns a packer.Artifact representing
|
|
|
|
// a VirtualBox appliance.
|
2019-03-22 09:53:28 -04:00
|
|
|
func (b *Builder) Run(ctx context.Context, ui packer.Ui, hook packer.Hook) (packer.Artifact, error) {
|
2019-01-11 17:06:15 -05:00
|
|
|
// Create the driver that we'll use to communicate with VirtualBox
|
2019-02-07 17:35:01 -05:00
|
|
|
VagrantCWD, err := filepath.Abs(b.config.OutputDir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
driver, err := NewDriver(VagrantCWD)
|
2019-01-11 17:06:15 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Failed creating VirtualBox driver: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set up the state.
|
|
|
|
state := new(multistep.BasicStateBag)
|
2019-12-19 11:01:55 -05:00
|
|
|
state.Put("config", &b.config)
|
2019-01-11 17:06:15 -05:00
|
|
|
state.Put("debug", b.config.PackerDebug)
|
|
|
|
state.Put("driver", driver)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
|
|
|
|
|
|
|
// Build the steps.
|
|
|
|
steps := []multistep.Step{}
|
2019-01-24 19:56:57 -05:00
|
|
|
// Download if source box isn't from vagrant cloud.
|
2019-01-25 15:32:44 -05:00
|
|
|
if strings.HasSuffix(b.config.SourceBox, ".box") {
|
2019-01-24 19:56:57 -05:00
|
|
|
steps = append(steps, &common.StepDownload{
|
|
|
|
Checksum: b.config.Checksum,
|
|
|
|
ChecksumType: b.config.ChecksumType,
|
|
|
|
Description: "Box",
|
|
|
|
Extension: "box",
|
|
|
|
ResultKey: "box_path",
|
|
|
|
Url: []string{b.config.SourceBox},
|
|
|
|
})
|
2019-01-11 17:06:15 -05:00
|
|
|
}
|
|
|
|
steps = append(steps,
|
2019-01-24 19:56:57 -05:00
|
|
|
&common.StepOutputDir{
|
|
|
|
Force: b.config.PackerForce,
|
|
|
|
Path: b.config.OutputDir,
|
|
|
|
},
|
2019-02-07 15:39:56 -05:00
|
|
|
&StepCreateVagrantfile{
|
|
|
|
Template: b.config.Template,
|
|
|
|
SyncedFolder: b.config.SyncedFolder,
|
|
|
|
SourceBox: b.config.SourceBox,
|
2019-07-09 18:26:04 -04:00
|
|
|
BoxName: b.config.BoxName,
|
2019-02-07 15:39:56 -05:00
|
|
|
OutputDir: b.config.OutputDir,
|
|
|
|
GlobalID: b.config.GlobalID,
|
2019-10-30 16:27:34 -04:00
|
|
|
InsertKey: b.config.InsertKey,
|
2019-01-11 17:06:15 -05:00
|
|
|
},
|
|
|
|
&StepAddBox{
|
|
|
|
BoxVersion: b.config.BoxVersion,
|
|
|
|
CACert: b.config.AddCACert,
|
|
|
|
CAPath: b.config.AddCAPath,
|
|
|
|
DownloadCert: b.config.AddCert,
|
|
|
|
Clean: b.config.AddClean,
|
|
|
|
Force: b.config.AddForce,
|
|
|
|
Insecure: b.config.AddInsecure,
|
|
|
|
Provider: b.config.Provider,
|
|
|
|
SourceBox: b.config.SourceBox,
|
2019-01-24 19:56:57 -05:00
|
|
|
BoxName: b.config.BoxName,
|
2019-01-25 15:32:44 -05:00
|
|
|
GlobalID: b.config.GlobalID,
|
2019-02-14 17:46:14 -05:00
|
|
|
SkipAdd: b.config.SkipAdd,
|
2019-01-11 17:06:15 -05:00
|
|
|
},
|
|
|
|
&StepUp{
|
2019-01-25 15:32:44 -05:00
|
|
|
TeardownMethod: b.config.TeardownMethod,
|
|
|
|
Provider: b.config.Provider,
|
|
|
|
GlobalID: b.config.GlobalID,
|
|
|
|
},
|
|
|
|
&StepSSHConfig{
|
|
|
|
b.config.GlobalID,
|
2019-01-11 17:06:15 -05:00
|
|
|
},
|
|
|
|
&communicator.StepConnect{
|
2019-10-14 10:12:09 -04:00
|
|
|
Config: &b.config.Comm,
|
2019-01-11 17:06:15 -05:00
|
|
|
Host: CommHost(),
|
2019-10-14 10:12:09 -04:00
|
|
|
SSHConfig: b.config.Comm.SSHConfigFunc(),
|
2019-01-11 17:06:15 -05:00
|
|
|
},
|
|
|
|
new(common.StepProvision),
|
|
|
|
&StepPackage{
|
|
|
|
SkipPackage: b.config.SkipPackage,
|
|
|
|
Include: b.config.PackageInclude,
|
|
|
|
Vagrantfile: b.config.OutputVagrantfile,
|
2019-01-25 15:32:44 -05:00
|
|
|
GlobalID: b.config.GlobalID,
|
2019-01-11 17:06:15 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
// Run the steps.
|
|
|
|
b.runner = common.NewRunnerWithPauseFn(steps, b.config.PackerConfig, ui, state)
|
2019-03-22 09:53:28 -04:00
|
|
|
b.runner.Run(ctx, state)
|
2019-01-11 17:06:15 -05:00
|
|
|
|
|
|
|
// Report any errors.
|
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we were interrupted or cancelled, then just exit.
|
|
|
|
if _, ok := state.GetOk(multistep.StateCancelled); ok {
|
|
|
|
return nil, errors.New("Build was cancelled.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := state.GetOk(multistep.StateHalted); ok {
|
|
|
|
return nil, errors.New("Build was halted.")
|
|
|
|
}
|
|
|
|
|
2020-01-30 05:27:58 -05:00
|
|
|
generatedData := map[string]interface{}{"generated_data": state.Get("generated_data")}
|
|
|
|
return NewArtifact(b.config.Provider, b.config.OutputDir, generatedData), nil
|
2019-01-11 17:06:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cancel.
|