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"
|
2013-07-31 01:33:41 -04:00
|
|
|
"fmt"
|
2013-07-29 19:42:35 -04:00
|
|
|
"github.com/mitchellh/goamz/ec2"
|
|
|
|
"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"
|
2013-07-29 19:42:35 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"log"
|
2013-07-30 00:59:34 -04:00
|
|
|
"runtime"
|
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 {
|
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
awscommon.AccessConfig `mapstructure:",squash"`
|
2013-08-09 01:52:39 -04:00
|
|
|
awscommon.AMIConfig `mapstructure:",squash"`
|
2013-07-29 20:37:22 -04:00
|
|
|
|
2013-07-31 00:19:57 -04:00
|
|
|
ChrootMounts [][]string `mapstructure:"chroot_mounts"`
|
2013-09-30 12:32:20 -04:00
|
|
|
CommandWrapper string `mapstructure:"command_wrapper"`
|
2013-07-31 00:19:57 -04:00
|
|
|
CopyFiles []string `mapstructure:"copy_files"`
|
|
|
|
DevicePath string `mapstructure:"device_path"`
|
|
|
|
MountPath string `mapstructure:"mount_path"`
|
|
|
|
SourceAmi string `mapstructure:"source_ami"`
|
2013-08-08 17:54:37 -04:00
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
tpl *packer.ConfigTemplate
|
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) {
|
2013-07-29 19:42:35 -04:00
|
|
|
md, err := common.DecodeConfig(&b.config, raws...)
|
|
|
|
if err != nil {
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, err
|
2013-07-29 19:42:35 -04:00
|
|
|
}
|
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
b.config.tpl, err = packer.NewConfigTemplate()
|
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-08-09 17:21:31 -04:00
|
|
|
b.config.tpl.UserVars = b.config.PackerUserVars
|
2013-09-07 21:42:50 -04:00
|
|
|
b.config.tpl.Funcs(awscommon.TemplateFuncs)
|
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{
|
|
|
|
[]string{"proc", "proc", "/proc"},
|
|
|
|
[]string{"sysfs", "sysfs", "/sys"},
|
|
|
|
[]string{"bind", "/dev", "/dev"},
|
|
|
|
[]string{"devpts", "devpts", "/dev/pts"},
|
|
|
|
[]string{"binfmt_misc", "binfmt_misc", "/proc/sys/fs/binfmt_misc"},
|
2013-07-30 14:27:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-30 18:30:53 -04:00
|
|
|
if len(b.config.CopyFiles) == 0 {
|
|
|
|
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-07-31 01:31:07 -04:00
|
|
|
b.config.MountPath = "packer-amazon-chroot-volumes/{{.Device}}"
|
2013-07-30 12:55:17 -04:00
|
|
|
}
|
2013-07-29 19:42:35 -04:00
|
|
|
|
|
|
|
// Accumulate any errors
|
|
|
|
errs := common.CheckUnusedConfig(md)
|
2013-08-08 17:54:37 -04:00
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AccessConfig.Prepare(b.config.tpl)...)
|
2013-08-09 01:52:39 -04:00
|
|
|
errs = packer.MultiErrorAppend(errs, b.config.AMIConfig.Prepare(b.config.tpl)...)
|
2013-07-31 01:33:41 -04:00
|
|
|
|
2013-08-08 17:54:37 -04:00
|
|
|
for i, 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
|
|
|
|
}
|
2013-08-08 17:54:37 -04:00
|
|
|
|
|
|
|
for j, entry := range mounts {
|
|
|
|
b.config.ChrootMounts[i][j], err = b.config.tpl.Process(entry, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Error processing chroot_mounts[%d][%d]: %s",
|
|
|
|
i, j, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, file := range b.config.CopyFiles {
|
|
|
|
var err error
|
|
|
|
b.config.CopyFiles[i], err = b.config.tpl.Process(file, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(errs,
|
|
|
|
fmt.Errorf("Error processing copy_files[%d]: %s",
|
|
|
|
i, err))
|
|
|
|
}
|
2013-07-31 01:29:06 -04:00
|
|
|
}
|
|
|
|
|
2013-07-30 12:55:17 -04:00
|
|
|
if b.config.SourceAmi == "" {
|
|
|
|
errs = packer.MultiErrorAppend(errs, errors.New("source_ami is required."))
|
|
|
|
}
|
|
|
|
|
2013-08-08 17:54:37 -04:00
|
|
|
templates := map[string]*string{
|
2013-09-27 06:54:53 -04:00
|
|
|
"device_path": &b.config.DevicePath,
|
|
|
|
"source_ami": &b.config.SourceAmi,
|
2013-08-08 17:54:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for n, ptr := range templates {
|
|
|
|
var err error
|
|
|
|
*ptr, err = b.config.tpl.Process(*ptr, nil)
|
|
|
|
if err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error processing %s: %s", n, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-29 19:42:35 -04:00
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, 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))
|
2013-11-02 23:56:54 -04:00
|
|
|
return nil, 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.")
|
|
|
|
}
|
|
|
|
|
2013-07-29 19:42:35 -04:00
|
|
|
region, err := b.config.Region()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
auth, err := b.config.AccessConfig.Auth()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ec2conn := ec2.New(auth, region)
|
|
|
|
|
2013-09-30 12:33:57 -04:00
|
|
|
wrappedCommand := func(command string) (string, error) {
|
|
|
|
return b.config.tpl.Process(
|
2013-09-29 04:04:57 -04:00
|
|
|
b.config.CommandWrapper, &wrappedCommandTemplate{
|
|
|
|
Command: command,
|
|
|
|
})
|
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{
|
2013-07-29 21:13:22 -04:00
|
|
|
&StepInstanceInfo{},
|
2013-07-29 20:37:22 -04:00
|
|
|
&StepSourceAMIInfo{},
|
2013-07-31 00:48:37 -04:00
|
|
|
&StepFlock{},
|
2013-07-31 00:19:57 -04:00
|
|
|
&StepPrepareDevice{},
|
2013-07-29 21:07:07 -04:00
|
|
|
&StepCreateVolume{},
|
2013-07-29 22:07:51 -04:00
|
|
|
&StepAttachVolume{},
|
2013-07-31 01:25:33 -04:00
|
|
|
&StepEarlyUnflock{},
|
2013-07-30 14:05:06 -04:00
|
|
|
&StepMountDevice{},
|
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{},
|
2013-07-30 21:28:21 -04:00
|
|
|
&StepRegisterAMI{},
|
2013-09-04 19:06:06 -04:00
|
|
|
&awscommon.StepAMIRegionCopy{
|
|
|
|
Regions: b.config.AMIRegions,
|
|
|
|
},
|
2013-08-22 18:35:47 -04:00
|
|
|
&awscommon.StepModifyAMIAttributes{
|
|
|
|
Description: b.config.AMIDescription,
|
|
|
|
Users: b.config.AMIUsers,
|
|
|
|
Groups: b.config.AMIGroups,
|
|
|
|
},
|
2013-08-22 18:11:54 -04:00
|
|
|
&awscommon.StepCreateTags{
|
|
|
|
Tags: b.config.AMITags,
|
|
|
|
},
|
2013-07-29 20:07:05 -04:00
|
|
|
}
|
2013-07-29 19:42:35 -04:00
|
|
|
|
|
|
|
// Run!
|
|
|
|
if b.config.PackerDebug {
|
|
|
|
b.runner = &multistep.DebugRunner{
|
|
|
|
Steps: steps,
|
|
|
|
PauseFn: common.MultistepDebugFn(ui),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
b.runner = &multistep.BasicRunner{Steps: steps}
|
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
}
|