2013-07-29 19:42:35 -04:00
|
|
|
// The chroot package is able to create an Amazon AMI without requiring
|
|
|
|
// the launch of a new instance for every build. It does this by attaching
|
|
|
|
// and mounting the root volume of another AMI and chrooting into that
|
|
|
|
// directory. It then creates an AMI from that attached drive.
|
|
|
|
package chroot
|
|
|
|
|
|
|
|
import (
|
2013-07-30 00:59:34 -04:00
|
|
|
"errors"
|
2014-06-04 17:58:11 -04:00
|
|
|
"log"
|
|
|
|
"runtime"
|
|
|
|
|
2015-10-30 14:58:56 -04:00
|
|
|
"github.com/aws/aws-sdk-go/aws/session"
|
2015-06-03 17:13:52 -04:00
|
|
|
"github.com/aws/aws-sdk-go/service/ec2"
|
2013-07-29 19:42:35 -04:00
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
awscommon "github.com/mitchellh/packer/builder/amazon/common"
|
2013-08-01 15:11:54 -04:00
|
|
|
"github.com/mitchellh/packer/common"
|
2015-05-27 14:47:45 -04:00
|
|
|
"github.com/mitchellh/packer/helper/config"
|
2013-07-29 19:42:35 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2015-05-27 14:47:45 -04:00
|
|
|
"github.com/mitchellh/packer/template/interpolate"
|
2013-07-29 19:42:35 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// The unique ID for this builder
|
|
|
|
const BuilderId = "mitchellh.amazon.chroot"
|
|
|
|
|
|
|
|
// Config is the configuration that is chained through the steps and
|
|
|
|
// settable from the template.
|
|
|
|
type Config struct {
|
2016-08-10 20:24:30 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
awscommon.AMIBlockDevices `mapstructure:",squash"`
|
|
|
|
awscommon.AMIConfig `mapstructure:",squash"`
|
|
|
|
awscommon.AccessConfig `mapstructure:",squash"`
|
|
|
|
|
2016-10-01 18:56:09 -04:00
|
|
|
ChrootMounts [][]string `mapstructure:"chroot_mounts"`
|
|
|
|
CommandWrapper string `mapstructure:"command_wrapper"`
|
|
|
|
CopyFiles []string `mapstructure:"copy_files"`
|
|
|
|
DevicePath string `mapstructure:"device_path"`
|
|
|
|
FromScratch bool `mapstructure:"from_scratch"`
|
|
|
|
MountOptions []string `mapstructure:"mount_options"`
|
|
|
|
MountPartition int `mapstructure:"mount_partition"`
|
|
|
|
MountPath string `mapstructure:"mount_path"`
|
|
|
|
PostMountCommands []string `mapstructure:"post_mount_commands"`
|
|
|
|
PreMountCommands []string `mapstructure:"pre_mount_commands"`
|
|
|
|
RootDeviceName string `mapstructure:"root_device_name"`
|
|
|
|
RootVolumeSize int64 `mapstructure:"root_volume_size"`
|
|
|
|
SourceAmi string `mapstructure:"source_ami"`
|
|
|
|
SourceAmiFilter awscommon.AmiFilterOptions `mapstructure:"source_ami_filter"`
|
2013-08-08 17:54:37 -04:00
|
|
|
|
2015-06-22 12:22:42 -04:00
|
|
|
ctx interpolate.Context
|
2013-07-29 19:42:35 -04:00
|
|
|
}
|
|
|
|
|
2013-09-27 18:08:15 -04:00
|
|
|
type wrappedCommandTemplate struct {
|
|
|
|
Command string
|
|
|
|
}
|
|
|
|
|
2013-07-29 19:42:35 -04:00
|
|
|
type Builder struct {
|
|
|
|
config Config
|
|
|
|
runner multistep.Runner
|
|
|
|
}
|
|
|
|
|
2013-11-02 23:56:54 -04:00
|
|
|
func (b *Builder) Prepare(raws ...interface{}) ([]string, error) {
|
2015-06-22 12:22:42 -04:00
|
|
|
b.config.ctx.Funcs = awscommon.TemplateFuncs
|
2015-05-27 14:47:45 -04:00
|
|
|
err := config.Decode(&b.config, &config.DecodeOpts{
|
|
|
|
Interpolate: true,
|
2015-06-22 12:22:42 -04:00
|
|
|
InterpolateContext: &b.config.ctx,
|
2015-05-27 14:47:45 -04:00
|
|
|
InterpolateFilter: &interpolate.RenderFilter{
|
|
|
|
Exclude: []string{
|
2017-01-10 05:41:28 -05:00
|
|
|
"ami_description",
|
|
|
|
"snapshot_tags",
|
|
|
|
"tags",
|
2015-05-27 14:47:45 -04:00
|
|
|
"command_wrapper",
|
2016-09-01 15:30:48 -04:00
|
|
|
"post_mount_commands",
|
2016-08-10 20:24:30 -04:00
|
|
|
"pre_mount_commands",
|
2015-05-27 14:47:45 -04:00
|
|
|
"mount_path",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}, raws...)
|
2013-08-08 17:54:37 -04:00
|
|
|
if err != nil {
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, err
|
2013-08-08 17:54:37 -04:00
|
|
|
}
|
|
|
|
|
2013-07-29 19:42:35 -04:00
|
|
|
// Defaults
|
2013-07-30 14:27:55 -04:00
|
|
|
if b.config.ChrootMounts == nil {
|
2013-07-30 15:08:16 -04:00
|
|
|
b.config.ChrootMounts = make([][]string, 0)
|
2013-07-30 14:27:55 -04:00
|
|
|
}
|
|
|
|
|
2013-07-30 18:30:53 -04:00
|
|
|
if b.config.CopyFiles == nil {
|
|
|
|
b.config.CopyFiles = make([]string, 0)
|
|
|
|
}
|
|
|
|
|
2013-07-30 14:27:55 -04:00
|
|
|
if len(b.config.ChrootMounts) == 0 {
|
2013-07-30 15:08:16 -04:00
|
|
|
b.config.ChrootMounts = [][]string{
|
2016-11-01 17:08:04 -04:00
|
|
|
{"proc", "proc", "/proc"},
|
|
|
|
{"sysfs", "sysfs", "/sys"},
|
|
|
|
{"bind", "/dev", "/dev"},
|
|
|
|
{"devpts", "devpts", "/dev/pts"},
|
|
|
|
{"binfmt_misc", "binfmt_misc", "/proc/sys/fs/binfmt_misc"},
|
2013-07-30 14:27:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-10 20:24:30 -04:00
|
|
|
if len(b.config.CopyFiles) == 0 && !b.config.FromScratch {
|
2013-07-30 18:30:53 -04:00
|
|
|
b.config.CopyFiles = []string{"/etc/resolv.conf"}
|
|
|
|
}
|
|
|
|
|
2013-09-27 06:54:53 -04:00
|
|
|
if b.config.CommandWrapper == "" {
|
|
|
|
b.config.CommandWrapper = "{{.Command}}"
|
2013-09-26 03:58:25 -04:00
|
|
|
}
|
|
|
|
|
2013-07-30 12:55:17 -04:00
|
|
|
if b.config.MountPath == "" {
|
2013-12-21 12:16:09 -05:00
|
|
|
b.config.MountPath = "/mnt/packer-amazon-chroot-volumes/{{.Device}}"
|
2013-07-30 12:55:17 -04:00
|
|
|
}
|
2013-07-29 19:42:35 -04:00
|
|
|
|
2016-01-06 14:35:01 -05:00
|
|
|
if b.config.MountPartition == 0 {
|
|
|
|
b.config.MountPartition = 1
|
|
|
|
}
|
|
|
|
|
2016-09-02 15:39:37 -04:00
|
|
|
// Accumulate any errors or warnings
|
2015-05-27 14:47:45 -04:00
|
|
|
var errs *packer.MultiError
|
2016-09-02 15:39:37 -04:00
|
|
|
var warns []string
|
|
|
|
|
2015-06-22 12:22:42 -04:00
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AccessConfig.Prepare(&b.config.ctx)...)
|
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AMIConfig.Prepare(&b.config.ctx)...)
|
2013-07-31 01:33:41 -04:00
|
|
|
|
2015-05-27 14:47:45 -04:00
|
|
|
for _, mounts := range b.config.ChrootMounts {
|
2013-07-31 01:29:06 -04:00
|
|
|
if len(mounts) != 3 {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("Each chroot_mounts entry should be three elements."))
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-10 20:24:30 -04:00
|
|
|
if b.config.FromScratch {
|
2016-10-01 18:56:09 -04:00
|
|
|
if b.config.SourceAmi != "" || !b.config.SourceAmiFilter.Empty() {
|
|
|
|
warns = append(warns, "source_ami and source_ami_filter are unused when from_scratch is true")
|
2016-09-02 15:39:37 -04:00
|
|
|
}
|
2016-08-10 20:24:30 -04:00
|
|
|
if b.config.RootVolumeSize == 0 {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("root_volume_size is required with from_scratch."))
|
|
|
|
}
|
|
|
|
if len(b.config.PreMountCommands) == 0 {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("pre_mount_commands is required with from_scratch."))
|
|
|
|
}
|
|
|
|
if b.config.AMIVirtType == "" {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("ami_virtualization_type is required with from_scratch."))
|
|
|
|
}
|
|
|
|
if b.config.RootDeviceName == "" {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("root_device_name is required with from_scratch."))
|
|
|
|
}
|
|
|
|
if len(b.config.AMIMappings) == 0 {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, errors.New("ami_block_device_mappings is required with from_scratch."))
|
|
|
|
}
|
|
|
|
} else {
|
2016-10-01 18:56:09 -04:00
|
|
|
if b.config.SourceAmi == "" && b.config.SourceAmiFilter.Empty() {
|
2016-08-10 20:24:30 -04:00
|
|
|
errs = packer.MultiErrorAppend(
|
2016-10-01 18:56:09 -04:00
|
|
|
errs, errors.New("source_ami or source_ami_filter is required."))
|
2016-08-10 20:24:30 -04:00
|
|
|
}
|
2016-09-02 15:39:37 -04:00
|
|
|
if len(b.config.AMIMappings) != 0 {
|
|
|
|
warns = append(warns, "ami_block_device_mappings are unused when from_scratch is false")
|
|
|
|
}
|
|
|
|
if b.config.RootDeviceName != "" {
|
|
|
|
warns = append(warns, "root_device_name is unused when from_scratch is false")
|
|
|
|
}
|
2013-07-30 12:55:17 -04:00
|
|
|
}
|
|
|
|
|
2013-07-29 19:42:35 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2016-09-02 15:39:37 -04:00
|
|
|
return warns, errs
|
2013-07-29 19:42:35 -04:00
|
|
|
}
|
|
|
|
|
2013-11-02 03:57:33 -04:00
|
|
|
log.Println(common.ScrubConfig(b.config, b.config.AccessKey, b.config.SecretKey))
|
2016-09-02 15:39:37 -04:00
|
|
|
return warns, nil
|
2013-07-29 19:42:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Run(ui packer.Ui, hook packer.Hook, cache packer.Cache) (packer.Artifact, error) {
|
2013-07-30 00:59:34 -04:00
|
|
|
if runtime.GOOS != "linux" {
|
|
|
|
return nil, errors.New("The amazon-chroot builder only works on Linux environments.")
|
|
|
|
}
|
|
|
|
|
2015-04-05 17:58:48 -04:00
|
|
|
config, err := b.config.Config()
|
2013-07-29 19:42:35 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-11-01 18:53:04 -04:00
|
|
|
session, err := session.NewSession(config)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-10-30 14:58:56 -04:00
|
|
|
ec2conn := ec2.New(session)
|
2013-07-29 19:42:35 -04:00
|
|
|
|
2013-09-30 12:33:57 -04:00
|
|
|
wrappedCommand := func(command string) (string, error) {
|
2015-06-22 12:22:42 -04:00
|
|
|
ctx := b.config.ctx
|
2015-05-27 14:47:45 -04:00
|
|
|
ctx.Data = &wrappedCommandTemplate{Command: command}
|
|
|
|
return interpolate.Render(b.config.CommandWrapper, &ctx)
|
2013-09-27 16:47:44 -04:00
|
|
|
}
|
|
|
|
|
2013-07-29 19:42:35 -04:00
|
|
|
// Setup the state bag and initial state for the steps
|
2013-08-31 15:58:55 -04:00
|
|
|
state := new(multistep.BasicStateBag)
|
|
|
|
state.Put("config", &b.config)
|
|
|
|
state.Put("ec2", ec2conn)
|
|
|
|
state.Put("hook", hook)
|
|
|
|
state.Put("ui", ui)
|
2013-09-30 12:33:57 -04:00
|
|
|
state.Put("wrappedCommand", CommandWrapper(wrappedCommand))
|
2013-07-29 19:42:35 -04:00
|
|
|
|
|
|
|
// Build the steps
|
2013-07-29 20:07:05 -04:00
|
|
|
steps := []multistep.Step{
|
2015-06-12 14:05:15 -04:00
|
|
|
&awscommon.StepPreValidate{
|
|
|
|
DestAmiName: b.config.AMIName,
|
|
|
|
ForceDeregister: b.config.AMIForceDeregister,
|
|
|
|
},
|
2013-07-29 21:13:22 -04:00
|
|
|
&StepInstanceInfo{},
|
2016-08-10 20:24:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if !b.config.FromScratch {
|
|
|
|
steps = append(steps,
|
|
|
|
&awscommon.StepSourceAMIInfo{
|
|
|
|
SourceAmi: b.config.SourceAmi,
|
|
|
|
EnhancedNetworking: b.config.AMIEnhancedNetworking,
|
2016-10-01 18:56:09 -04:00
|
|
|
AmiFilters: b.config.SourceAmiFilter,
|
2016-08-10 20:24:30 -04:00
|
|
|
},
|
|
|
|
&StepCheckRootDevice{},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
steps = append(steps,
|
2013-07-31 00:48:37 -04:00
|
|
|
&StepFlock{},
|
2013-07-31 00:19:57 -04:00
|
|
|
&StepPrepareDevice{},
|
2015-06-23 11:35:59 -04:00
|
|
|
&StepCreateVolume{
|
|
|
|
RootVolumeSize: b.config.RootVolumeSize,
|
|
|
|
},
|
2013-07-29 22:07:51 -04:00
|
|
|
&StepAttachVolume{},
|
2013-07-31 01:25:33 -04:00
|
|
|
&StepEarlyUnflock{},
|
2016-08-10 20:24:30 -04:00
|
|
|
&StepPreMountCommands{
|
|
|
|
Commands: b.config.PreMountCommands,
|
|
|
|
},
|
2015-06-23 12:26:13 -04:00
|
|
|
&StepMountDevice{
|
2016-01-06 14:35:01 -05:00
|
|
|
MountOptions: b.config.MountOptions,
|
|
|
|
MountPartition: b.config.MountPartition,
|
2015-06-23 12:26:13 -04:00
|
|
|
},
|
2016-09-01 15:30:48 -04:00
|
|
|
&StepPostMountCommands{
|
|
|
|
Commands: b.config.PostMountCommands,
|
|
|
|
},
|
2013-07-30 15:08:16 -04:00
|
|
|
&StepMountExtra{},
|
2013-07-30 18:30:53 -04:00
|
|
|
&StepCopyFiles{},
|
2013-07-30 17:56:40 -04:00
|
|
|
&StepChrootProvision{},
|
2013-07-30 19:41:29 -04:00
|
|
|
&StepEarlyCleanup{},
|
2013-07-30 19:58:58 -04:00
|
|
|
&StepSnapshot{},
|
2015-06-12 14:05:15 -04:00
|
|
|
&awscommon.StepDeregisterAMI{
|
2016-11-30 16:28:34 -05:00
|
|
|
ForceDeregister: b.config.AMIForceDeregister,
|
|
|
|
ForceDeleteSnapshot: b.config.AMIForceDeleteSnapshot,
|
|
|
|
AMIName: b.config.AMIName,
|
2015-06-12 14:05:15 -04:00
|
|
|
},
|
2015-06-23 11:35:59 -04:00
|
|
|
&StepRegisterAMI{
|
|
|
|
RootVolumeSize: b.config.RootVolumeSize,
|
|
|
|
},
|
2013-09-04 19:06:06 -04:00
|
|
|
&awscommon.StepAMIRegionCopy{
|
2015-06-05 07:15:48 -04:00
|
|
|
AccessConfig: &b.config.AccessConfig,
|
|
|
|
Regions: b.config.AMIRegions,
|
|
|
|
Name: b.config.AMIName,
|
2013-09-04 19:06:06 -04:00
|
|
|
},
|
2013-08-22 18:35:47 -04:00
|
|
|
&awscommon.StepModifyAMIAttributes{
|
2016-12-02 03:49:21 -05:00
|
|
|
Description: b.config.AMIDescription,
|
|
|
|
Users: b.config.AMIUsers,
|
|
|
|
Groups: b.config.AMIGroups,
|
|
|
|
ProductCodes: b.config.AMIProductCodes,
|
|
|
|
SnapshotUsers: b.config.SnapshotUsers,
|
|
|
|
SnapshotGroups: b.config.SnapshotGroups,
|
2017-01-10 05:41:28 -05:00
|
|
|
Ctx: b.config.ctx,
|
2013-08-22 18:35:47 -04:00
|
|
|
},
|
2013-08-22 18:11:54 -04:00
|
|
|
&awscommon.StepCreateTags{
|
2016-10-16 22:19:55 -04:00
|
|
|
Tags: b.config.AMITags,
|
|
|
|
SnapshotTags: b.config.SnapshotTags,
|
2017-01-10 05:41:28 -05:00
|
|
|
Ctx: b.config.ctx,
|
2013-08-22 18:11:54 -04:00
|
|
|
},
|
2016-08-10 20:24:30 -04:00
|
|
|
)
|
2013-07-29 19:42:35 -04:00
|
|
|
|
|
|
|
// Run!
|
2016-09-13 20:04:18 -04:00
|
|
|
b.runner = common.NewRunner(steps, b.config.PackerConfig, ui)
|
2013-07-29 19:42:35 -04:00
|
|
|
b.runner.Run(state)
|
|
|
|
|
|
|
|
// If there was an error, return that
|
2013-08-31 15:58:55 -04:00
|
|
|
if rawErr, ok := state.GetOk("error"); ok {
|
2013-07-29 19:42:35 -04:00
|
|
|
return nil, rawErr.(error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are no AMIs, then just return
|
2013-08-31 15:58:55 -04:00
|
|
|
if _, ok := state.GetOk("amis"); !ok {
|
2013-07-29 19:42:35 -04:00
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the artifact and return it
|
|
|
|
artifact := &awscommon.Artifact{
|
2013-08-31 15:58:55 -04:00
|
|
|
Amis: state.Get("amis").(map[string]string),
|
2013-07-29 19:42:35 -04:00
|
|
|
BuilderIdValue: BuilderId,
|
|
|
|
Conn: ec2conn,
|
|
|
|
}
|
|
|
|
|
|
|
|
return artifact, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Builder) Cancel() {
|
|
|
|
if b.runner != nil {
|
|
|
|
log.Println("Cancelling the step runner...")
|
|
|
|
b.runner.Cancel()
|
|
|
|
}
|
|
|
|
}
|