2013-06-27 10:33:32 -04:00
|
|
|
package vagrant
|
|
|
|
|
|
|
|
import (
|
2013-08-23 18:14:58 -04:00
|
|
|
"archive/tar"
|
2013-10-08 00:59:26 -04:00
|
|
|
"compress/flate"
|
2013-06-27 19:05:47 -04:00
|
|
|
"errors"
|
2013-06-27 10:33:32 -04:00
|
|
|
"fmt"
|
2013-08-15 15:09:22 -04:00
|
|
|
"github.com/mitchellh/packer/common"
|
2013-06-27 10:33:32 -04:00
|
|
|
"github.com/mitchellh/packer/packer"
|
2013-08-23 18:14:58 -04:00
|
|
|
"io"
|
2013-06-27 10:33:32 -04:00
|
|
|
"io/ioutil"
|
2013-06-27 19:05:47 -04:00
|
|
|
"log"
|
2013-06-27 10:33:32 -04:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2013-06-27 19:05:47 -04:00
|
|
|
"regexp"
|
2013-10-08 00:59:26 -04:00
|
|
|
"strconv"
|
2013-06-27 10:33:32 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type VBoxBoxConfig struct {
|
2013-08-15 15:09:22 -04:00
|
|
|
common.PackerConfig `mapstructure:",squash"`
|
|
|
|
|
2013-06-27 10:38:33 -04:00
|
|
|
OutputPath string `mapstructure:"output"`
|
|
|
|
VagrantfileTemplate string `mapstructure:"vagrantfile_template"`
|
2013-10-08 00:59:26 -04:00
|
|
|
CompressionLevel string `mapstructure:"compression_level"`
|
2013-08-15 15:19:41 -04:00
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
tpl *packer.ConfigTemplate
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type VBoxVagrantfileTemplate struct {
|
|
|
|
BaseMacAddress string
|
|
|
|
}
|
|
|
|
|
|
|
|
type VBoxBoxPostProcessor struct {
|
|
|
|
config VBoxBoxConfig
|
|
|
|
}
|
|
|
|
|
2013-07-01 17:59:23 -04:00
|
|
|
func (p *VBoxBoxPostProcessor) Configure(raws ...interface{}) error {
|
2013-08-15 15:19:41 -04:00
|
|
|
md, err := common.DecodeConfig(&p.config, raws...)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2013-08-15 22:17:23 -04:00
|
|
|
p.config.tpl, err = packer.NewConfigTemplate()
|
2013-08-15 15:19:41 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.config.tpl.UserVars = p.config.PackerUserVars
|
|
|
|
|
|
|
|
// Accumulate any errors
|
|
|
|
errs := common.CheckUnusedConfig(md)
|
|
|
|
|
|
|
|
validates := map[string]*string{
|
2013-08-18 22:37:04 -04:00
|
|
|
"output": &p.config.OutputPath,
|
2013-08-15 15:19:41 -04:00
|
|
|
"vagrantfile_template": &p.config.VagrantfileTemplate,
|
2013-10-08 00:59:26 -04:00
|
|
|
"compression_level": &p.config.CompressionLevel,
|
2013-08-15 15:19:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for n, ptr := range validates {
|
|
|
|
if err := p.config.tpl.Validate(*ptr); err != nil {
|
|
|
|
errs = packer.MultiErrorAppend(
|
|
|
|
errs, fmt.Errorf("Error parsing %s: %s", n, err))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if errs != nil && len(errs.Errors) > 0 {
|
|
|
|
return errs
|
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
func (p *VBoxBoxPostProcessor) PostProcess(ui packer.Ui, artifact packer.Artifact) (packer.Artifact, bool, error) {
|
2013-06-27 19:05:47 -04:00
|
|
|
var err error
|
2013-06-27 10:33:32 -04:00
|
|
|
|
2013-06-27 13:51:13 -04:00
|
|
|
// Compile the output path
|
2013-08-18 22:37:04 -04:00
|
|
|
outputPath, err := p.config.tpl.Process(p.config.OutputPath, &OutputPathTemplate{
|
|
|
|
ArtifactId: artifact.Id(),
|
|
|
|
BuildName: p.config.PackerBuildName,
|
|
|
|
Provider: "virtualbox",
|
|
|
|
})
|
2013-06-27 13:51:13 -04:00
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 13:51:13 -04:00
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
// Create a temporary directory for us to build the contents of the box in
|
|
|
|
dir, err := ioutil.TempDir("", "packer")
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
defer os.RemoveAll(dir)
|
|
|
|
|
|
|
|
// Copy all of the original contents into the temporary directory
|
|
|
|
for _, path := range artifact.Files() {
|
|
|
|
|
2013-08-23 18:14:58 -04:00
|
|
|
// We treat OVA files specially, we unpack those into the temporary
|
|
|
|
// directory so we can get the resulting disk and OVF.
|
2013-08-22 22:47:50 -04:00
|
|
|
if extension := filepath.Ext(path); extension == ".ova" {
|
2013-08-23 18:14:58 -04:00
|
|
|
ui.Message(fmt.Sprintf("Unpacking OVA: %s", path))
|
2013-10-18 18:39:12 -04:00
|
|
|
if err := DecompressOva(dir, path); err != nil {
|
2013-08-22 22:47:50 -04:00
|
|
|
return nil, false, err
|
|
|
|
}
|
|
|
|
} else {
|
2013-08-23 18:14:58 -04:00
|
|
|
ui.Message(fmt.Sprintf("Copying: %s", path))
|
2013-08-22 22:47:50 -04:00
|
|
|
dstPath := filepath.Join(dir, filepath.Base(path))
|
|
|
|
if err := CopyContents(dstPath, path); err != nil {
|
|
|
|
return nil, false, err
|
|
|
|
}
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
2013-08-22 22:47:50 -04:00
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the Vagrantfile from the template
|
2013-08-22 22:47:50 -04:00
|
|
|
tplData := &VBoxVagrantfileTemplate{}
|
|
|
|
tplData.BaseMacAddress, err = p.findBaseMacAddress(dir)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, err
|
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
vf, err := os.Create(filepath.Join(dir, "Vagrantfile"))
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
defer vf.Close()
|
|
|
|
|
2013-06-27 10:38:33 -04:00
|
|
|
vagrantfileContents := defaultVBoxVagrantfile
|
|
|
|
if p.config.VagrantfileTemplate != "" {
|
|
|
|
f, err := os.Open(p.config.VagrantfileTemplate)
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:38:33 -04:00
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
contents, err := ioutil.ReadAll(f)
|
|
|
|
if err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:38:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
vagrantfileContents = string(contents)
|
|
|
|
}
|
|
|
|
|
2013-08-15 15:19:41 -04:00
|
|
|
vagrantfileContents, err = p.config.tpl.Process(vagrantfileContents, tplData)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, fmt.Errorf("Error writing Vagrantfile: %s", err)
|
|
|
|
}
|
|
|
|
vf.Write([]byte(vagrantfileContents))
|
2013-06-27 10:33:32 -04:00
|
|
|
vf.Close()
|
|
|
|
|
2013-10-08 00:59:26 -04:00
|
|
|
var level int = flate.DefaultCompression
|
|
|
|
if p.config.CompressionLevel != "" {
|
|
|
|
level, err = strconv.Atoi(p.config.CompressionLevel)
|
|
|
|
if err != nil {
|
|
|
|
return nil, false, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
// Create the metadata
|
|
|
|
metadata := map[string]string{"provider": "virtualbox"}
|
|
|
|
if err := WriteMetadata(dir, metadata); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
2013-06-29 15:46:05 -04:00
|
|
|
// Rename the OVF file to box.ovf, as required by Vagrant
|
|
|
|
ui.Message("Renaming the OVF to box.ovf...")
|
|
|
|
if err := p.renameOVF(dir); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-29 15:46:05 -04:00
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
// Compress the directory to the given output path
|
|
|
|
ui.Message(fmt.Sprintf("Compressing box..."))
|
2013-10-08 00:59:26 -04:00
|
|
|
if err := DirToBox(outputPath, dir, ui, level); err != nil {
|
2013-07-01 14:30:39 -04:00
|
|
|
return nil, false, err
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
2013-07-01 14:30:39 -04:00
|
|
|
return NewArtifact("virtualbox", outputPath), false, nil
|
2013-06-27 10:33:32 -04:00
|
|
|
}
|
|
|
|
|
2013-08-22 22:47:50 -04:00
|
|
|
func (p *VBoxBoxPostProcessor) findOvf(dir string) (string, error) {
|
|
|
|
log.Println("Looking for OVF in artifact...")
|
|
|
|
file_matches, err := filepath.Glob(filepath.Join(dir, "*.ovf"))
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(file_matches) > 1 {
|
|
|
|
return "", errors.New("More than one OVF file in VirtualBox artifact.")
|
2013-06-27 19:05:47 -04:00
|
|
|
}
|
|
|
|
|
2013-08-22 22:47:50 -04:00
|
|
|
if len(file_matches) < 1 {
|
2013-06-27 19:05:47 -04:00
|
|
|
return "", errors.New("ovf file couldn't be found")
|
|
|
|
}
|
|
|
|
|
2013-08-22 22:47:50 -04:00
|
|
|
return file_matches[0], err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *VBoxBoxPostProcessor) renameOVF(dir string) error {
|
|
|
|
log.Println("Looking for OVF to rename...")
|
|
|
|
ovf, err := p.findOvf(dir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Renaming: '%s' => box.ovf", ovf)
|
|
|
|
return os.Rename(ovf, filepath.Join(dir, "box.ovf"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *VBoxBoxPostProcessor) findBaseMacAddress(dir string) (string, error) {
|
|
|
|
log.Println("Looking for OVF for base mac address...")
|
|
|
|
ovf, err := p.findOvf(dir)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
2013-06-27 19:05:47 -04:00
|
|
|
f, err := os.Open(ovf)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
data, err := ioutil.ReadAll(f)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
re := regexp.MustCompile(`<Adapter slot="0".+?MACAddress="(.+?)"`)
|
|
|
|
matches := re.FindSubmatch(data)
|
|
|
|
if matches == nil {
|
|
|
|
return "", errors.New("can't find base mac address in OVF")
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("Base mac address: %s", string(matches[1]))
|
|
|
|
return string(matches[1]), nil
|
|
|
|
}
|
|
|
|
|
2013-08-23 18:14:58 -04:00
|
|
|
// DecompressOva takes an ova file and decompresses it into the target
|
|
|
|
// directory.
|
|
|
|
func DecompressOva(dir, src string) error {
|
|
|
|
log.Printf("Turning ova to dir: %s => %s", src, dir)
|
|
|
|
srcF, err := os.Open(src)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer srcF.Close()
|
|
|
|
|
|
|
|
tarReader := tar.NewReader(srcF)
|
|
|
|
for {
|
|
|
|
hdr, err := tarReader.Next()
|
|
|
|
if hdr == nil || err == io.EOF {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
info := hdr.FileInfo()
|
|
|
|
|
|
|
|
// Shouldn't be any directories, skip them
|
|
|
|
if info.IsDir() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// We wrap this in an anonymous function so that the defers
|
|
|
|
// inside are handled more quickly so we can give up file handles.
|
|
|
|
err = func() error {
|
|
|
|
path := filepath.Join(dir, info.Name())
|
|
|
|
output, err := os.Create(path)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer output.Close()
|
|
|
|
|
|
|
|
os.Chmod(path, info.Mode())
|
|
|
|
os.Chtimes(path, hdr.AccessTime, hdr.ModTime)
|
|
|
|
_, err = io.Copy(output, tarReader)
|
|
|
|
return err
|
|
|
|
}()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2013-06-27 10:33:32 -04:00
|
|
|
var defaultVBoxVagrantfile = `
|
|
|
|
Vagrant.configure("2") do |config|
|
2013-07-01 17:59:23 -04:00
|
|
|
config.vm.base_mac = "{{ .BaseMacAddress }}"
|
2013-06-27 10:33:32 -04:00
|
|
|
end
|
|
|
|
`
|