2013-07-30 15:08:16 -04:00
|
|
|
package chroot
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
|
|
|
"github.com/mitchellh/multistep"
|
|
|
|
"github.com/mitchellh/packer/packer"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
)
|
|
|
|
|
|
|
|
// StepMountExtra mounts the attached device.
|
|
|
|
//
|
|
|
|
// Produces:
|
2013-07-30 19:41:29 -04:00
|
|
|
// mount_extra_cleanup CleanupFunc - To perform early cleanup
|
2013-07-30 15:08:16 -04:00
|
|
|
type StepMountExtra struct {
|
|
|
|
mounts []string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepMountExtra) Run(state map[string]interface{}) multistep.StepAction {
|
|
|
|
config := state["config"].(*Config)
|
|
|
|
mountPath := state["mount_path"].(string)
|
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
|
|
|
|
s.mounts = make([]string, 0, len(config.ChrootMounts))
|
|
|
|
|
|
|
|
ui.Say("Mounting additional paths within the chroot...")
|
|
|
|
for _, mountInfo := range config.ChrootMounts {
|
|
|
|
innerPath := mountPath + mountInfo[2]
|
|
|
|
|
|
|
|
if err := os.MkdirAll(innerPath, 0755); err != nil {
|
|
|
|
err := fmt.Errorf("Error creating mount directory: %s", err)
|
|
|
|
state["error"] = err
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
2013-07-30 15:18:19 -04:00
|
|
|
flags := "-t " + mountInfo[0]
|
|
|
|
if mountInfo[0] == "bind" {
|
|
|
|
flags = "--bind"
|
|
|
|
}
|
|
|
|
|
2013-07-30 15:08:16 -04:00
|
|
|
ui.Message(fmt.Sprintf("Mounting: %s", mountInfo[2]))
|
|
|
|
stderr := new(bytes.Buffer)
|
|
|
|
mountCommand := fmt.Sprintf(
|
2013-07-30 15:18:19 -04:00
|
|
|
"%s %s %s %s",
|
2013-07-30 15:08:16 -04:00
|
|
|
config.MountCommand,
|
2013-07-30 15:18:19 -04:00
|
|
|
flags,
|
2013-07-30 15:08:16 -04:00
|
|
|
mountInfo[1],
|
|
|
|
innerPath)
|
|
|
|
cmd := exec.Command("/bin/sh", "-c", mountCommand)
|
|
|
|
cmd.Stderr = stderr
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
err := fmt.Errorf(
|
|
|
|
"Error mounting: %s\nStderr: %s", err, stderr.String())
|
|
|
|
state["error"] = err
|
|
|
|
ui.Error(err.Error())
|
|
|
|
return multistep.ActionHalt
|
|
|
|
}
|
|
|
|
|
|
|
|
s.mounts = append(s.mounts, innerPath)
|
|
|
|
}
|
|
|
|
|
2013-07-30 20:56:42 -04:00
|
|
|
state["mount_extra_cleanup"] = s
|
2013-07-30 15:08:16 -04:00
|
|
|
return multistep.ActionContinue
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *StepMountExtra) Cleanup(state map[string]interface{}) {
|
2013-07-30 19:41:29 -04:00
|
|
|
ui := state["ui"].(packer.Ui)
|
|
|
|
|
|
|
|
if err := s.CleanupFunc(state); err != nil {
|
|
|
|
ui.Error(err.Error())
|
2013-07-30 15:08:16 -04:00
|
|
|
return
|
|
|
|
}
|
2013-07-30 19:41:29 -04:00
|
|
|
}
|
2013-07-30 15:08:16 -04:00
|
|
|
|
2013-07-30 19:41:29 -04:00
|
|
|
func (s *StepMountExtra) CleanupFunc(state map[string]interface{}) error {
|
|
|
|
if s.mounts == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2013-07-30 15:08:16 -04:00
|
|
|
|
2013-07-30 19:41:29 -04:00
|
|
|
config := state["config"].(*Config)
|
|
|
|
for len(s.mounts) > 0 {
|
|
|
|
var path string
|
|
|
|
lastIndex := len(s.mounts) - 1
|
|
|
|
path, s.mounts = s.mounts[lastIndex], s.mounts[:lastIndex]
|
2013-07-30 15:08:16 -04:00
|
|
|
unmountCommand := fmt.Sprintf("%s %s", config.UnmountCommand, path)
|
2013-07-30 16:21:25 -04:00
|
|
|
|
|
|
|
stderr := new(bytes.Buffer)
|
2013-07-30 15:16:04 -04:00
|
|
|
cmd := exec.Command("/bin/sh", "-c", unmountCommand)
|
2013-07-30 16:21:25 -04:00
|
|
|
cmd.Stderr = stderr
|
2013-07-30 15:08:16 -04:00
|
|
|
if err := cmd.Run(); err != nil {
|
2013-07-30 19:41:29 -04:00
|
|
|
return fmt.Errorf(
|
|
|
|
"Error unmounting device: %s\nStderr: %s", err, stderr.String())
|
2013-07-30 15:08:16 -04:00
|
|
|
}
|
|
|
|
}
|
2013-07-30 19:41:29 -04:00
|
|
|
|
|
|
|
s.mounts = nil
|
|
|
|
return nil
|
2013-07-30 15:08:16 -04:00
|
|
|
}
|