2015-09-08 21:08:49 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
2015-09-22 23:32:05 +00:00
|
|
|
"runtime"
|
2015-09-24 04:15:28 +00:00
|
|
|
"strconv"
|
2015-09-08 21:08:49 +00:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2015-09-21 21:13:17 +00:00
|
|
|
"github.com/hashicorp/nomad/client/allocdir"
|
2015-09-08 21:08:49 +00:00
|
|
|
"github.com/hashicorp/nomad/client/config"
|
2015-11-06 18:41:42 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/executor"
|
2015-11-05 21:46:02 +00:00
|
|
|
"github.com/hashicorp/nomad/client/fingerprint"
|
2015-11-05 15:23:45 +00:00
|
|
|
"github.com/hashicorp/nomad/client/getter"
|
2015-09-08 21:08:49 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-10-27 22:27:11 +00:00
|
|
|
reQemuVersion = regexp.MustCompile(`version (\d[\.\d+]+)`)
|
2015-09-08 21:08:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// QemuDriver is a driver for running images via Qemu
|
|
|
|
// We attempt to chose sane defaults for now, with more configuration available
|
|
|
|
// planned in the future
|
|
|
|
type QemuDriver struct {
|
2015-09-10 01:38:52 +00:00
|
|
|
DriverContext
|
2015-11-05 21:46:02 +00:00
|
|
|
fingerprint.StaticFingerprinter
|
2015-09-08 21:08:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// qemuHandle is returned from Start/Open as a handle to the PID
|
|
|
|
type qemuHandle struct {
|
2015-11-06 18:41:42 +00:00
|
|
|
cmd executor.Executor
|
2015-09-08 21:08:49 +00:00
|
|
|
waitCh chan error
|
|
|
|
doneCh chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewQemuDriver is used to create a new exec driver
|
2015-09-10 01:38:52 +00:00
|
|
|
func NewQemuDriver(ctx *DriverContext) Driver {
|
2015-11-05 21:46:02 +00:00
|
|
|
return &QemuDriver{DriverContext: *ctx}
|
2015-09-08 21:08:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *QemuDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) {
|
2015-10-27 22:27:11 +00:00
|
|
|
bin := "qemu-system-x86_64"
|
|
|
|
if runtime.GOOS == "windows" {
|
2015-10-29 23:57:02 +00:00
|
|
|
// On windows, the "qemu-system-x86_64" command does not respond to the
|
|
|
|
// version flag.
|
2015-10-27 22:27:11 +00:00
|
|
|
bin = "qemu-img"
|
2015-09-22 23:32:05 +00:00
|
|
|
}
|
2015-10-27 22:27:11 +00:00
|
|
|
outBytes, err := exec.Command(bin, "--version").Output()
|
2015-09-08 21:08:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
out := strings.TrimSpace(string(outBytes))
|
|
|
|
|
|
|
|
matches := reQemuVersion.FindStringSubmatch(out)
|
|
|
|
if len(matches) != 2 {
|
|
|
|
return false, fmt.Errorf("Unable to parse Qemu version string: %#v", matches)
|
|
|
|
}
|
|
|
|
|
2015-09-24 04:15:28 +00:00
|
|
|
node.Attributes["driver.qemu"] = "1"
|
2015-09-08 21:08:49 +00:00
|
|
|
node.Attributes["driver.qemu.version"] = matches[1]
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run an existing Qemu image. Start() will pull down an existing, valid Qemu
|
|
|
|
// image and save it to the Drivers Allocation Dir
|
|
|
|
func (d *QemuDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, error) {
|
|
|
|
// Get the image source
|
2015-11-05 15:23:45 +00:00
|
|
|
source, ok := task.Config["artifact_source"]
|
2015-09-08 21:08:49 +00:00
|
|
|
if !ok || source == "" {
|
|
|
|
return nil, fmt.Errorf("Missing source image Qemu driver")
|
|
|
|
}
|
|
|
|
|
2015-09-09 19:28:16 +00:00
|
|
|
// Qemu defaults to 128M of RAM for a given VM. Instead, we force users to
|
|
|
|
// supply a memory size in the tasks resources
|
|
|
|
if task.Resources == nil || task.Resources.MemoryMB == 0 {
|
|
|
|
return nil, fmt.Errorf("Missing required Task Resource: Memory")
|
|
|
|
}
|
|
|
|
|
2015-09-21 21:13:17 +00:00
|
|
|
// Get the tasks local directory.
|
2015-09-23 04:56:29 +00:00
|
|
|
taskDir, ok := ctx.AllocDir.TaskDirs[d.DriverContext.taskName]
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("Could not find task directory for task: %v", d.DriverContext.taskName)
|
2015-09-21 21:13:17 +00:00
|
|
|
}
|
|
|
|
|
2015-11-05 15:23:45 +00:00
|
|
|
// Proceed to download an artifact to be executed.
|
|
|
|
vmPath, err := getter.GetArtifact(
|
|
|
|
filepath.Join(taskDir, allocdir.TaskLocal),
|
|
|
|
task.Config["artifact_source"],
|
|
|
|
task.Config["checksum"],
|
|
|
|
d.logger,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
vmID := filepath.Base(vmPath)
|
2015-09-08 21:08:49 +00:00
|
|
|
|
|
|
|
// Parse configuration arguments
|
|
|
|
// Create the base arguments
|
|
|
|
accelerator := "tcg"
|
|
|
|
if acc, ok := task.Config["accelerator"]; ok {
|
|
|
|
accelerator = acc
|
|
|
|
}
|
2015-09-09 19:30:35 +00:00
|
|
|
// TODO: Check a lower bounds, e.g. the default 128 of Qemu
|
|
|
|
mem := fmt.Sprintf("%dM", task.Resources.MemoryMB)
|
2015-09-08 21:08:49 +00:00
|
|
|
|
|
|
|
args := []string{
|
|
|
|
"qemu-system-x86_64",
|
|
|
|
"-machine", "type=pc,accel=" + accelerator,
|
|
|
|
"-name", vmID,
|
|
|
|
"-m", mem,
|
2015-10-15 21:40:08 +00:00
|
|
|
"-drive", "file=" + vmPath,
|
2015-09-08 21:08:49 +00:00
|
|
|
"-nodefconfig",
|
|
|
|
"-nodefaults",
|
|
|
|
"-nographic",
|
|
|
|
}
|
|
|
|
|
2015-09-24 19:32:54 +00:00
|
|
|
// Check the Resources required Networks to add port mappings. If no resources
|
|
|
|
// are required, we assume the VM is a purely compute job and does not require
|
|
|
|
// the outside world to be able to reach it. VMs ran without port mappings can
|
|
|
|
// still reach out to the world, but without port mappings it is effectively
|
|
|
|
// firewalled
|
2015-09-25 13:36:46 +00:00
|
|
|
if len(task.Resources.Networks) > 0 {
|
2015-09-24 19:32:54 +00:00
|
|
|
// TODO: Consolidate these into map of host/guest port when we have HCL
|
|
|
|
// Note: Host port must be open and available
|
|
|
|
// Get and split guest ports. The guest_ports configuration must match up with
|
|
|
|
// the Reserved ports in the Task Resources
|
|
|
|
// Users can supply guest_hosts as a list of posts to map on the guest vm.
|
|
|
|
// These map 1:1 with the requested Reserved Ports from the hostmachine.
|
|
|
|
ports := strings.Split(task.Config["guest_ports"], ",")
|
|
|
|
if len(ports) == 0 {
|
|
|
|
return nil, fmt.Errorf("[ERR] driver.qemu: Error parsing required Guest Ports")
|
|
|
|
}
|
2015-09-24 04:15:28 +00:00
|
|
|
|
2015-09-24 19:32:54 +00:00
|
|
|
// TODO: support more than a single, default Network
|
|
|
|
if len(ports) != len(task.Resources.Networks[0].ReservedPorts) {
|
|
|
|
return nil, fmt.Errorf("[ERR] driver.qemu: Error matching Guest Ports with Reserved ports")
|
|
|
|
}
|
2015-09-08 21:08:49 +00:00
|
|
|
|
2015-09-24 19:32:54 +00:00
|
|
|
// Loop through the reserved ports and construct the hostfwd string, to map
|
|
|
|
// reserved ports to the ports listenting in the VM
|
|
|
|
// Ex:
|
|
|
|
// hostfwd=tcp::22000-:22,hostfwd=tcp::80-:8080
|
|
|
|
reservedPorts := task.Resources.Networks[0].ReservedPorts
|
|
|
|
var forwarding string
|
|
|
|
for i, p := range ports {
|
|
|
|
forwarding = fmt.Sprintf("%s,hostfwd=tcp::%s-:%s", forwarding, strconv.Itoa(reservedPorts[i]), p)
|
|
|
|
}
|
2015-09-24 04:15:28 +00:00
|
|
|
|
2015-09-24 19:32:54 +00:00
|
|
|
if "" == forwarding {
|
|
|
|
return nil, fmt.Errorf("[ERR] driver.qemu: Error constructing port forwarding")
|
|
|
|
}
|
2015-09-24 04:15:28 +00:00
|
|
|
|
2015-09-24 19:32:54 +00:00
|
|
|
args = append(args,
|
|
|
|
"-netdev",
|
|
|
|
fmt.Sprintf("user,id=user.0%s", forwarding),
|
|
|
|
"-device", "virtio-net,netdev=user.0",
|
|
|
|
)
|
|
|
|
}
|
2015-09-24 04:15:28 +00:00
|
|
|
|
2015-09-08 21:08:49 +00:00
|
|
|
// If using KVM, add optimization args
|
|
|
|
if accelerator == "kvm" {
|
|
|
|
args = append(args,
|
|
|
|
"-enable-kvm",
|
|
|
|
"-cpu", "host",
|
|
|
|
// Do we have cores information available to the Driver?
|
|
|
|
// "-smp", fmt.Sprintf("%d", cores),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2015-11-06 18:41:42 +00:00
|
|
|
// Setup the command
|
|
|
|
cmd := executor.Command(args[0], args[1:]...)
|
|
|
|
if err := cmd.Limit(task.Resources); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to constrain resources: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := cmd.ConfigureTaskDir(d.taskName, ctx.AllocDir); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to configure task directory: %v", err)
|
|
|
|
}
|
2015-09-08 21:08:49 +00:00
|
|
|
|
|
|
|
d.logger.Printf("[DEBUG] Starting QemuVM command: %q", strings.Join(args, " "))
|
|
|
|
if err := cmd.Start(); err != nil {
|
2015-11-06 18:41:42 +00:00
|
|
|
return nil, fmt.Errorf("failed to start command: %v", err)
|
2015-09-08 21:08:49 +00:00
|
|
|
}
|
|
|
|
d.logger.Printf("[INFO] Started new QemuVM: %s", vmID)
|
|
|
|
|
|
|
|
// Create and Return Handle
|
|
|
|
h := &qemuHandle{
|
2015-11-06 18:41:42 +00:00
|
|
|
cmd: cmd,
|
2015-09-08 21:08:49 +00:00
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *QemuDriver) Open(ctx *ExecContext, handleID string) (DriverHandle, error) {
|
|
|
|
// Find the process
|
2015-11-06 18:41:42 +00:00
|
|
|
cmd, err := executor.OpenId(handleID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to open ID %v: %v", handleID, err)
|
2015-09-08 21:08:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return a driver handle
|
2015-11-06 18:41:42 +00:00
|
|
|
h := &execHandle{
|
|
|
|
cmd: cmd,
|
2015-09-08 21:08:49 +00:00
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan error, 1),
|
|
|
|
}
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *qemuHandle) ID() string {
|
2015-11-06 18:41:42 +00:00
|
|
|
id, _ := h.cmd.ID()
|
|
|
|
return id
|
2015-09-08 21:08:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *qemuHandle) WaitCh() chan error {
|
|
|
|
return h.waitCh
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *qemuHandle) Update(task *structs.Task) error {
|
|
|
|
// Update is not possible
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: allow a 'shutdown_command' that can be executed over a ssh connection
|
|
|
|
// to the VM
|
|
|
|
func (h *qemuHandle) Kill() error {
|
2015-11-06 18:41:42 +00:00
|
|
|
h.cmd.Shutdown()
|
2015-09-08 21:08:49 +00:00
|
|
|
select {
|
|
|
|
case <-h.doneCh:
|
|
|
|
return nil
|
|
|
|
case <-time.After(5 * time.Second):
|
2015-11-06 18:41:42 +00:00
|
|
|
return h.cmd.ForceStop()
|
2015-09-08 21:08:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *qemuHandle) run() {
|
2015-11-06 18:41:42 +00:00
|
|
|
err := h.cmd.Wait()
|
2015-09-08 21:08:49 +00:00
|
|
|
close(h.doneCh)
|
|
|
|
if err != nil {
|
|
|
|
h.waitCh <- err
|
|
|
|
}
|
|
|
|
close(h.waitCh)
|
|
|
|
}
|