2015-06-21 07:36:07 -04:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2018-01-22 18:32:33 -05:00
|
|
|
"context"
|
2015-06-21 07:36:07 -04:00
|
|
|
"fmt"
|
2017-05-21 12:29:26 -04:00
|
|
|
"log"
|
|
|
|
"path/filepath"
|
2017-05-29 20:16:03 -04:00
|
|
|
"strings"
|
|
|
|
|
2018-01-19 19:18:44 -05:00
|
|
|
"github.com/hashicorp/packer/helper/multistep"
|
2017-04-04 16:39:01 -04:00
|
|
|
"github.com/hashicorp/packer/packer"
|
2015-06-21 07:36:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// This step creates the actual virtual machine.
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// VMName string - The name of the VM
|
|
|
|
type StepCreateVM struct {
|
2016-08-07 07:26:27 -04:00
|
|
|
VMName string
|
|
|
|
SwitchName string
|
2017-05-21 12:29:26 -04:00
|
|
|
HarddrivePath string
|
2016-11-06 09:07:46 -05:00
|
|
|
RamSize uint
|
2016-08-07 07:26:27 -04:00
|
|
|
DiskSize uint
|
2018-02-23 14:19:26 -05:00
|
|
|
DiskBlockSize uint
|
2016-08-07 07:26:27 -04:00
|
|
|
Generation uint
|
|
|
|
Cpu uint
|
|
|
|
EnableMacSpoofing bool
|
|
|
|
EnableDynamicMemory bool
|
|
|
|
EnableSecureBoot bool
|
2018-05-10 13:00:35 -04:00
|
|
|
SecureBootTemplate string
|
2016-08-06 02:09:33 -04:00
|
|
|
EnableVirtualizationExtensions bool
|
2017-10-19 18:29:17 -04:00
|
|
|
AdditionalDiskSize []uint
|
2017-10-12 06:35:31 -04:00
|
|
|
DifferencingDisk bool
|
2017-12-14 21:24:15 -05:00
|
|
|
MacAddress string
|
2018-04-20 15:13:12 -04:00
|
|
|
FixedVHD bool
|
2015-06-21 07:36:07 -04:00
|
|
|
}
|
|
|
|
|
2018-01-22 18:31:41 -05:00
|
|
|
func (s *StepCreateVM) Run(_ context.Context, state multistep.StateBag) multistep.StepAction {
|
2015-10-30 04:23:30 -04:00
|
|
|
driver := state.Get("driver").(Driver)
|
2015-06-21 07:36:07 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
ui.Say("Creating virtual machine...")
|
|
|
|
|
2018-07-08 18:27:37 -04:00
|
|
|
var path string
|
|
|
|
if v, ok := state.GetOk("build_dir"); ok {
|
|
|
|
path = v.(string)
|
|
|
|
}
|
2017-05-29 20:16:03 -04:00
|
|
|
|
2017-05-21 12:29:26 -04:00
|
|
|
// Determine if we even have an existing virtual harddrive to attach
|
|
|
|
harddrivePath := ""
|
|
|
|
if harddrivePathRaw, ok := state.GetOk("iso_path"); ok {
|
|
|
|
extension := strings.ToLower(filepath.Ext(harddrivePathRaw.(string)))
|
2017-05-28 21:36:01 -04:00
|
|
|
if extension == ".vhd" || extension == ".vhdx" {
|
2017-05-21 12:29:26 -04:00
|
|
|
harddrivePath = harddrivePathRaw.(string)
|
|
|
|
} else {
|
|
|
|
log.Println("No existing virtual harddrive, not attaching.")
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Println("No existing virtual harddrive, not attaching.")
|
|
|
|
}
|
2017-10-11 12:40:39 -04:00
|
|
|
|
2015-06-21 07:36:07 -04:00
|
|
|
// convert the MB to bytes
|
2016-11-06 09:07:46 -05:00
|
|
|
ramSize := int64(s.RamSize * 1024 * 1024)
|
2015-10-30 04:23:30 -04:00
|
|
|
diskSize := int64(s.DiskSize * 1024 * 1024)
|
2018-02-23 14:19:26 -05:00
|
|
|
diskBlockSize := int64(s.DiskBlockSize * 1024 * 1024)
|
2015-06-21 07:36:07 -04:00
|
|
|
|
2018-07-09 12:20:38 -04:00
|
|
|
err := driver.CreateVirtualMachine(s.VMName, path, harddrivePath, ramSize, diskSize, diskBlockSize,
|
|
|
|
s.SwitchName, s.Generation, s.DifferencingDisk, s.FixedVHD)
|
2015-06-21 07:36:07 -04:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error creating virtual machine: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2015-10-30 04:23:30 -04:00
|
|
|
|
2016-08-07 07:26:27 -04:00
|
|
|
err = driver.SetVirtualMachineCpuCount(s.VMName, s.Cpu)
|
2015-06-21 14:35:32 -04:00
|
|
|
if err != nil {
|
2017-09-20 08:53:37 -04:00
|
|
|
err := fmt.Errorf("Error setting virtual machine cpu count: %s", err)
|
2015-06-21 14:35:32 -04:00
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
2015-10-30 04:23:30 -04:00
|
|
|
|
2017-09-20 08:53:37 -04:00
|
|
|
err = driver.SetVirtualMachineDynamicMemory(s.VMName, s.EnableDynamicMemory)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error setting virtual machine dynamic memory: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
2016-08-07 07:26:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if s.EnableMacSpoofing {
|
|
|
|
err = driver.SetVirtualMachineMacSpoofing(s.VMName, s.EnableMacSpoofing)
|
|
|
|
if err != nil {
|
2017-09-20 08:53:37 -04:00
|
|
|
err := fmt.Errorf("Error setting virtual machine mac spoofing: %s", err)
|
2016-08-07 07:26:27 -04:00
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-30 04:23:30 -04:00
|
|
|
if s.Generation == 2 {
|
2018-05-10 13:00:35 -04:00
|
|
|
err = driver.SetVirtualMachineSecureBoot(s.VMName, s.EnableSecureBoot, s.SecureBootTemplate)
|
2015-06-29 16:18:25 -04:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error setting secure boot: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
2015-06-21 14:35:32 -04:00
|
|
|
|
2016-08-07 07:26:27 -04:00
|
|
|
if s.EnableVirtualizationExtensions {
|
|
|
|
//This is only supported on Windows 10 and Windows Server 2016 onwards
|
|
|
|
err = driver.SetVirtualMachineVirtualizationExtensions(s.VMName, s.EnableVirtualizationExtensions)
|
|
|
|
if err != nil {
|
2017-09-20 08:53:37 -04:00
|
|
|
err := fmt.Errorf("Error setting virtual machine virtualization extensions: %s", err)
|
2016-08-07 07:26:27 -04:00
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-19 18:29:17 -04:00
|
|
|
if len(s.AdditionalDiskSize) > 0 {
|
|
|
|
for index, size := range s.AdditionalDiskSize {
|
2017-10-31 11:48:17 -04:00
|
|
|
diskSize := int64(size * 1024 * 1024)
|
|
|
|
diskFile := fmt.Sprintf("%s-%d.vhdx", s.VMName, index)
|
2018-07-08 06:16:02 -04:00
|
|
|
err = driver.AddVirtualMachineHardDrive(s.VMName, path, diskFile, diskSize, diskBlockSize, "SCSI")
|
2017-10-19 18:29:17 -04:00
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error creating and attaching additional disk drive: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 21:24:15 -05:00
|
|
|
if s.MacAddress != "" {
|
|
|
|
err = driver.SetVmNetworkAdapterMacAddress(s.VMName, s.MacAddress)
|
|
|
|
if err != nil {
|
|
|
|
err := fmt.Errorf("Error setting MAC address: %s", err)
|
|
|
|
state.Put("error", err)
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-21 07:36:07 -04:00
|
|
|
// Set the final name in the state bag so others can use it
|
|
|
|
state.Put("vmName", s.VMName)
|
|
|
|
|
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepCreateVM) Cleanup(state multistep.StateBag) {
|
|
|
|
if s.VMName == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-30 04:23:30 -04:00
|
|
|
driver := state.Get("driver").(Driver)
|
2015-06-21 07:36:07 -04:00
|
|
|
ui := state.Get("ui").(packer.Ui)
|
|
|
|
ui.Say("Unregistering and deleting virtual machine...")
|
|
|
|
|
2015-10-30 04:23:30 -04:00
|
|
|
err := driver.DeleteVirtualMachine(s.VMName)
|
2015-06-21 07:36:07 -04:00
|
|
|
if err != nil {
|
|
|
|
ui.Error(fmt.Sprintf("Error deleting virtual machine: %s", err))
|
|
|
|
}
|
2018-02-23 14:19:26 -05:00
|
|
|
|
|
|
|
// TODO: Clean up created VHDX
|
2015-06-21 07:36:07 -04:00
|
|
|
}
|