2018-10-17 16:43:15 +00:00
|
|
|
package qemu
|
|
|
|
|
|
|
|
import (
|
2018-11-13 01:09:27 +00:00
|
|
|
"context"
|
2018-10-17 16:43:15 +00:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2018-09-28 17:09:01 +00:00
|
|
|
"net"
|
2018-10-17 16:43:15 +00:00
|
|
|
"os/exec"
|
|
|
|
"path/filepath"
|
|
|
|
"regexp"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2018-10-25 18:45:44 +00:00
|
|
|
"github.com/coreos/go-semver/semver"
|
2019-01-09 23:06:58 +00:00
|
|
|
hclog "github.com/hashicorp/go-hclog"
|
2018-10-17 16:43:15 +00:00
|
|
|
"github.com/hashicorp/nomad/drivers/shared/eventer"
|
2018-12-07 01:54:14 +00:00
|
|
|
"github.com/hashicorp/nomad/drivers/shared/executor"
|
drivers: restore port_map old json support
This ensures that `port_map` along with other block like attribute
declarations (e.g. ulimit, labels, etc) can handle various hcl and json
syntax that was supported in 0.8.
In 0.8.7, the following declarations are effectively equivalent:
```
// hcl block
port_map {
http = 80
https = 443
}
// hcl assignment
port_map = {
http = 80
https = 443
}
// json single element array of map (default in API response)
{"port_map": [{"http": 80, "https": 443}]}
// json array of individual maps (supported accidentally iiuc)
{"port_map: [{"http": 80}, {"https": 443}]}
```
We achieve compatbility by using `NewAttr("...", "list(map(string))",
false)` to be serialized to a `map[string]string` wrapper, instead of using
`BlockAttrs` declaration. The wrapper merges the list of maps
automatically, to ease driver development.
This approach is closer to how v0.8.7 implemented the fields [1][2], and
despite its verbosity, seems to perserve 0.8.7 behavior in hcl2.
This is only required for built-in types that have backward
compatibility constraints. External drivers should use `BlockAttrs`
instead, as they see fit.
[1] https://github.com/hashicorp/nomad/blob/v0.8.7/client/driver/docker.go#L216
[2] https://github.com/hashicorp/nomad/blob/v0.8.7/client/driver/docker.go#L698-L700
2019-02-13 17:55:48 +00:00
|
|
|
"github.com/hashicorp/nomad/helper/pluginutils/hclutils"
|
2019-01-23 14:27:14 +00:00
|
|
|
"github.com/hashicorp/nomad/helper/pluginutils/loader"
|
2018-10-17 16:43:15 +00:00
|
|
|
"github.com/hashicorp/nomad/plugins/base"
|
|
|
|
"github.com/hashicorp/nomad/plugins/drivers"
|
|
|
|
"github.com/hashicorp/nomad/plugins/shared/hclspec"
|
2018-11-21 00:30:39 +00:00
|
|
|
pstructs "github.com/hashicorp/nomad/plugins/shared/structs"
|
2018-10-17 16:43:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// pluginName is the name of the plugin
|
|
|
|
pluginName = "qemu"
|
|
|
|
|
|
|
|
// fingerprintPeriod is the interval at which the driver will send fingerprint responses
|
|
|
|
fingerprintPeriod = 30 * time.Second
|
|
|
|
|
|
|
|
// The key populated in Node Attributes to indicate presence of the Qemu driver
|
2018-10-30 21:05:31 +00:00
|
|
|
driverAttr = "driver.qemu"
|
|
|
|
driverVersionAttr = "driver.qemu.version"
|
2018-10-17 22:42:01 +00:00
|
|
|
|
2018-10-17 16:43:15 +00:00
|
|
|
// Represents an ACPI shutdown request to the VM (emulates pressing a physical power button)
|
|
|
|
// Reference: https://en.wikibooks.org/wiki/QEMU/Monitor
|
2018-10-31 18:53:37 +00:00
|
|
|
qemuGracefulShutdownMsg = "system_powerdown\n"
|
|
|
|
qemuMonitorSocketName = "qemu-monitor.sock"
|
2018-10-25 18:41:24 +00:00
|
|
|
|
2018-10-17 16:43:15 +00:00
|
|
|
// Maximum socket path length prior to qemu 2.10.1
|
2018-10-31 18:53:37 +00:00
|
|
|
qemuLegacyMaxMonitorPathLen = 108
|
2019-01-17 02:52:31 +00:00
|
|
|
|
|
|
|
// taskHandleVersion is the version of task handle which this driver sets
|
|
|
|
// and understands how to decode driver state
|
|
|
|
taskHandleVersion = 1
|
2018-10-17 16:43:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2018-10-30 05:10:37 +00:00
|
|
|
// PluginID is the qemu plugin metadata registered in the plugin
|
|
|
|
// catalog.
|
|
|
|
PluginID = loader.PluginID{
|
|
|
|
Name: pluginName,
|
|
|
|
PluginType: base.PluginTypeDriver,
|
|
|
|
}
|
|
|
|
|
|
|
|
// PluginConfig is the qemu driver factory function registered in the
|
|
|
|
// plugin catalog.
|
|
|
|
PluginConfig = &loader.InternalPluginConfig{
|
|
|
|
Config: map[string]interface{}{},
|
|
|
|
Factory: func(l hclog.Logger) interface{} { return NewQemuDriver(l) },
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
versionRegex = regexp.MustCompile(`version (\d[\.\d+]+)`)
|
2018-10-17 16:43:15 +00:00
|
|
|
|
|
|
|
// Prior to qemu 2.10.1, monitor socket paths are truncated to 108 bytes.
|
|
|
|
// We should consider this if driver.qemu.version is < 2.10.1 and the
|
|
|
|
// generated monitor path is too long.
|
|
|
|
//
|
|
|
|
// Relevant fix is here:
|
|
|
|
// https://github.com/qemu/qemu/commit/ad9579aaa16d5b385922d49edac2c96c79bcfb6
|
2018-10-31 18:53:37 +00:00
|
|
|
qemuVersionLongSocketPathFix = semver.New("2.10.1")
|
2018-10-17 16:43:15 +00:00
|
|
|
|
|
|
|
// pluginInfo is the response returned for the PluginInfo RPC
|
|
|
|
pluginInfo = &base.PluginInfoResponse{
|
2018-12-18 00:40:58 +00:00
|
|
|
Type: base.PluginTypeDriver,
|
|
|
|
PluginApiVersions: []string{drivers.ApiVersion010},
|
|
|
|
PluginVersion: "0.1.0",
|
|
|
|
Name: pluginName,
|
2018-10-17 16:43:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// configSpec is the hcl specification returned by the ConfigSchema RPC
|
|
|
|
configSpec = hclspec.NewObject(map[string]*hclspec.Spec{})
|
|
|
|
|
|
|
|
// taskConfigSpec is the hcl specification for the driver config section of
|
|
|
|
// a taskConfig within a job. It is returned in the TaskConfigSchema RPC
|
|
|
|
taskConfigSpec = hclspec.NewObject(map[string]*hclspec.Spec{
|
|
|
|
"image_path": hclspec.NewAttr("image_path", "string", true),
|
|
|
|
"accelerator": hclspec.NewAttr("accelerator", "string", false),
|
|
|
|
"graceful_shutdown": hclspec.NewAttr("graceful_shutdown", "bool", false),
|
|
|
|
"args": hclspec.NewAttr("args", "list(string)", false),
|
drivers: restore port_map old json support
This ensures that `port_map` along with other block like attribute
declarations (e.g. ulimit, labels, etc) can handle various hcl and json
syntax that was supported in 0.8.
In 0.8.7, the following declarations are effectively equivalent:
```
// hcl block
port_map {
http = 80
https = 443
}
// hcl assignment
port_map = {
http = 80
https = 443
}
// json single element array of map (default in API response)
{"port_map": [{"http": 80, "https": 443}]}
// json array of individual maps (supported accidentally iiuc)
{"port_map: [{"http": 80}, {"https": 443}]}
```
We achieve compatbility by using `NewAttr("...", "list(map(string))",
false)` to be serialized to a `map[string]string` wrapper, instead of using
`BlockAttrs` declaration. The wrapper merges the list of maps
automatically, to ease driver development.
This approach is closer to how v0.8.7 implemented the fields [1][2], and
despite its verbosity, seems to perserve 0.8.7 behavior in hcl2.
This is only required for built-in types that have backward
compatibility constraints. External drivers should use `BlockAttrs`
instead, as they see fit.
[1] https://github.com/hashicorp/nomad/blob/v0.8.7/client/driver/docker.go#L216
[2] https://github.com/hashicorp/nomad/blob/v0.8.7/client/driver/docker.go#L698-L700
2019-02-13 17:55:48 +00:00
|
|
|
"port_map": hclspec.NewAttr("port_map", "list(map(number))", false),
|
2018-10-17 16:43:15 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// capabilities is returned by the Capabilities RPC and indicates what
|
|
|
|
// optional features this driver supports
|
|
|
|
capabilities = &drivers.Capabilities{
|
|
|
|
SendSignals: false,
|
|
|
|
Exec: false,
|
2019-01-04 21:11:25 +00:00
|
|
|
FSIsolation: drivers.FSIsolationImage,
|
2018-10-17 16:43:15 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
_ drivers.DriverPlugin = (*Driver)(nil)
|
2018-10-17 16:43:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TaskConfig is the driver configuration of a taskConfig within a job
|
|
|
|
type TaskConfig struct {
|
drivers: restore port_map old json support
This ensures that `port_map` along with other block like attribute
declarations (e.g. ulimit, labels, etc) can handle various hcl and json
syntax that was supported in 0.8.
In 0.8.7, the following declarations are effectively equivalent:
```
// hcl block
port_map {
http = 80
https = 443
}
// hcl assignment
port_map = {
http = 80
https = 443
}
// json single element array of map (default in API response)
{"port_map": [{"http": 80, "https": 443}]}
// json array of individual maps (supported accidentally iiuc)
{"port_map: [{"http": 80}, {"https": 443}]}
```
We achieve compatbility by using `NewAttr("...", "list(map(string))",
false)` to be serialized to a `map[string]string` wrapper, instead of using
`BlockAttrs` declaration. The wrapper merges the list of maps
automatically, to ease driver development.
This approach is closer to how v0.8.7 implemented the fields [1][2], and
despite its verbosity, seems to perserve 0.8.7 behavior in hcl2.
This is only required for built-in types that have backward
compatibility constraints. External drivers should use `BlockAttrs`
instead, as they see fit.
[1] https://github.com/hashicorp/nomad/blob/v0.8.7/client/driver/docker.go#L216
[2] https://github.com/hashicorp/nomad/blob/v0.8.7/client/driver/docker.go#L698-L700
2019-02-13 17:55:48 +00:00
|
|
|
ImagePath string `codec:"image_path"`
|
|
|
|
Accelerator string `codec:"accelerator"`
|
|
|
|
Args []string `codec:"args"` // extra arguments to qemu executable
|
|
|
|
PortMap hclutils.MapStrInt `codec:"port_map"` // A map of host port and the port name defined in the image manifest file
|
|
|
|
GracefulShutdown bool `codec:"graceful_shutdown"`
|
2018-10-17 16:43:15 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
// TaskState is the state which is encoded in the handle returned in StartTask.
|
|
|
|
// This information is needed to rebuild the taskConfig state and handler
|
2018-10-17 16:43:15 +00:00
|
|
|
// during recovery.
|
2018-10-30 21:05:31 +00:00
|
|
|
type TaskState struct {
|
2019-01-15 01:02:44 +00:00
|
|
|
ReattachConfig *pstructs.ReattachConfig
|
2018-10-17 16:43:15 +00:00
|
|
|
TaskConfig *drivers.TaskConfig
|
|
|
|
Pid int
|
|
|
|
StartedAt time.Time
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
// Driver is a driver for running images via Qemu
|
|
|
|
type Driver struct {
|
2018-10-17 16:43:15 +00:00
|
|
|
// eventer is used to handle multiplexing of TaskEvents calls such that an
|
|
|
|
// event can be broadcast to all callers
|
|
|
|
eventer *eventer.Eventer
|
|
|
|
|
2018-10-25 18:43:29 +00:00
|
|
|
// tasks is the in memory datastore mapping taskIDs to qemuTaskHandle
|
2018-10-17 16:43:15 +00:00
|
|
|
tasks *taskStore
|
|
|
|
|
|
|
|
// ctx is the context for the driver. It is passed to other subsystems to
|
|
|
|
// coordinate shutdown
|
|
|
|
ctx context.Context
|
|
|
|
|
2018-10-30 05:10:37 +00:00
|
|
|
// nomadConf is the client agent's configuration
|
|
|
|
nomadConfig *base.ClientDriverConfig
|
|
|
|
|
2018-10-17 16:43:15 +00:00
|
|
|
// signalShutdown is called when the driver is shutting down and cancels the
|
|
|
|
// ctx passed to any subsystems
|
|
|
|
signalShutdown context.CancelFunc
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
// logger will log to the Nomad agent
|
2018-10-17 16:43:15 +00:00
|
|
|
logger hclog.Logger
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewQemuDriver(logger hclog.Logger) drivers.DriverPlugin {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
logger = logger.Named(pluginName)
|
2018-10-30 21:05:31 +00:00
|
|
|
return &Driver{
|
2018-10-17 16:43:15 +00:00
|
|
|
eventer: eventer.NewEventer(ctx, logger),
|
|
|
|
tasks: newTaskStore(),
|
|
|
|
ctx: ctx,
|
|
|
|
signalShutdown: cancel,
|
|
|
|
logger: logger,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) PluginInfo() (*base.PluginInfoResponse, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
return pluginInfo, nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) ConfigSchema() (*hclspec.Spec, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
return configSpec, nil
|
|
|
|
}
|
|
|
|
|
2018-12-18 00:40:58 +00:00
|
|
|
func (d *Driver) SetConfig(cfg *base.Config) error {
|
|
|
|
if cfg.AgentConfig != nil {
|
|
|
|
d.nomadConfig = cfg.AgentConfig.Driver
|
2018-10-30 05:10:37 +00:00
|
|
|
}
|
2018-10-17 16:43:15 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) TaskConfigSchema() (*hclspec.Spec, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
return taskConfigSpec, nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) Capabilities() (*drivers.Capabilities, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
return capabilities, nil
|
|
|
|
}
|
|
|
|
|
2018-10-31 18:53:37 +00:00
|
|
|
func (d *Driver) Fingerprint(ctx context.Context) (<-chan *drivers.Fingerprint, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
ch := make(chan *drivers.Fingerprint)
|
2018-10-31 18:53:37 +00:00
|
|
|
go d.handleFingerprint(ctx, ch)
|
2018-10-17 16:43:15 +00:00
|
|
|
return ch, nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) handleFingerprint(ctx context.Context, ch chan *drivers.Fingerprint) {
|
2018-10-17 16:43:15 +00:00
|
|
|
ticker := time.NewTimer(0)
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return
|
|
|
|
case <-d.ctx.Done():
|
|
|
|
return
|
|
|
|
case <-ticker.C:
|
|
|
|
ticker.Reset(fingerprintPeriod)
|
|
|
|
ch <- d.buildFingerprint()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) buildFingerprint() *drivers.Fingerprint {
|
2018-10-17 16:43:15 +00:00
|
|
|
fingerprint := &drivers.Fingerprint{
|
2018-11-21 00:30:39 +00:00
|
|
|
Attributes: map[string]*pstructs.Attribute{},
|
2018-10-17 16:43:15 +00:00
|
|
|
Health: drivers.HealthStateHealthy,
|
2019-01-07 04:04:15 +00:00
|
|
|
HealthDescription: drivers.DriverHealthy,
|
2018-10-17 16:43:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bin := "qemu-system-x86_64"
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
// On windows, the "qemu-system-x86_64" command does not respond to the
|
|
|
|
// version flag.
|
|
|
|
bin = "qemu-img"
|
|
|
|
}
|
|
|
|
outBytes, err := exec.Command(bin, "--version").Output()
|
|
|
|
if err != nil {
|
|
|
|
// return no error, as it isn't an error to not find qemu, it just means we
|
|
|
|
// can't use it.
|
|
|
|
fingerprint.Health = drivers.HealthStateUndetected
|
|
|
|
fingerprint.HealthDescription = ""
|
|
|
|
return fingerprint
|
|
|
|
}
|
|
|
|
out := strings.TrimSpace(string(outBytes))
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
matches := versionRegex.FindStringSubmatch(out)
|
2018-10-17 16:43:15 +00:00
|
|
|
if len(matches) != 2 {
|
|
|
|
fingerprint.Health = drivers.HealthStateUndetected
|
2019-01-07 04:04:15 +00:00
|
|
|
fingerprint.HealthDescription = fmt.Sprintf("Failed to parse qemu version from %v", out)
|
2018-10-17 16:43:15 +00:00
|
|
|
return fingerprint
|
|
|
|
}
|
|
|
|
currentQemuVersion := matches[1]
|
2018-11-21 00:30:39 +00:00
|
|
|
fingerprint.Attributes[driverAttr] = pstructs.NewBoolAttribute(true)
|
|
|
|
fingerprint.Attributes[driverVersionAttr] = pstructs.NewStringAttribute(currentQemuVersion)
|
2018-10-17 16:43:15 +00:00
|
|
|
return fingerprint
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) RecoverTask(handle *drivers.TaskHandle) error {
|
2018-10-17 16:43:15 +00:00
|
|
|
if handle == nil {
|
|
|
|
return fmt.Errorf("error: handle cannot be nil")
|
|
|
|
}
|
|
|
|
|
2019-01-23 19:44:42 +00:00
|
|
|
// COMPAT(0.10): pre 0.9 upgrade path check
|
2019-01-16 16:19:25 +00:00
|
|
|
if handle.Version == 0 {
|
2019-01-23 19:44:42 +00:00
|
|
|
return d.recoverPre09Task(handle)
|
2019-01-16 16:19:25 +00:00
|
|
|
}
|
|
|
|
|
2018-10-18 20:39:02 +00:00
|
|
|
// If already attached to handle there's nothing to recover.
|
|
|
|
if _, ok := d.tasks.Get(handle.Config.ID); ok {
|
|
|
|
d.logger.Trace("nothing to recover; task already exists",
|
|
|
|
"task_id", handle.Config.ID,
|
|
|
|
"task_name", handle.Config.Name,
|
|
|
|
)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
var taskState TaskState
|
2018-10-17 16:43:15 +00:00
|
|
|
if err := handle.GetDriverState(&taskState); err != nil {
|
|
|
|
d.logger.Error("failed to decode taskConfig state from handle", "error", err, "task_id", handle.Config.ID)
|
|
|
|
return fmt.Errorf("failed to decode taskConfig state from handle: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-01-15 01:02:44 +00:00
|
|
|
plugRC, err := pstructs.ReattachConfigToGoPlugin(taskState.ReattachConfig)
|
2018-10-17 16:43:15 +00:00
|
|
|
if err != nil {
|
|
|
|
d.logger.Error("failed to build ReattachConfig from taskConfig state", "error", err, "task_id", handle.Config.ID)
|
|
|
|
return fmt.Errorf("failed to build ReattachConfig from taskConfig state: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-01-14 17:25:59 +00:00
|
|
|
execImpl, pluginClient, err := executor.ReattachToExecutor(plugRC,
|
2019-01-09 23:06:58 +00:00
|
|
|
d.logger.With("task_name", handle.Config.Name, "alloc_id", handle.Config.AllocID))
|
2018-10-17 16:43:15 +00:00
|
|
|
if err != nil {
|
|
|
|
d.logger.Error("failed to reattach to executor", "error", err, "task_id", handle.Config.ID)
|
|
|
|
return fmt.Errorf("failed to reattach to executor: %v", err)
|
|
|
|
}
|
|
|
|
|
2018-10-31 18:53:37 +00:00
|
|
|
h := &taskHandle{
|
2018-10-17 16:43:15 +00:00
|
|
|
exec: execImpl,
|
|
|
|
pid: taskState.Pid,
|
|
|
|
pluginClient: pluginClient,
|
|
|
|
taskConfig: taskState.TaskConfig,
|
|
|
|
procState: drivers.TaskStateRunning,
|
|
|
|
startedAt: taskState.StartedAt,
|
|
|
|
exitResult: &drivers.ExitResult{},
|
|
|
|
}
|
|
|
|
|
|
|
|
d.tasks.Set(taskState.TaskConfig.ID, h)
|
|
|
|
|
|
|
|
go h.run()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-01-04 23:01:35 +00:00
|
|
|
func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drivers.DriverNetwork, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
if _, ok := d.tasks.Get(cfg.ID); ok {
|
|
|
|
return nil, nil, fmt.Errorf("taskConfig with ID '%s' already started", cfg.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
var driverConfig TaskConfig
|
|
|
|
|
|
|
|
if err := cfg.DecodeDriverConfig(&driverConfig); err != nil {
|
|
|
|
return nil, nil, fmt.Errorf("failed to decode driver config: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-01-17 02:52:31 +00:00
|
|
|
handle := drivers.NewTaskHandle(taskHandleVersion)
|
2018-10-17 16:43:15 +00:00
|
|
|
handle.Config = cfg
|
|
|
|
|
|
|
|
// Get the image source
|
|
|
|
vmPath := driverConfig.ImagePath
|
|
|
|
if vmPath == "" {
|
|
|
|
return nil, nil, fmt.Errorf("image_path must be set")
|
|
|
|
}
|
|
|
|
vmID := filepath.Base(vmPath)
|
|
|
|
|
|
|
|
// Parse configuration arguments
|
|
|
|
// Create the base arguments
|
|
|
|
accelerator := "tcg"
|
|
|
|
if driverConfig.Accelerator != "" {
|
|
|
|
accelerator = driverConfig.Accelerator
|
|
|
|
}
|
|
|
|
|
2018-12-14 00:21:41 +00:00
|
|
|
mb := cfg.Resources.NomadResources.Memory.MemoryMB
|
|
|
|
if mb < 128 || mb > 4000000 {
|
2018-10-17 16:43:15 +00:00
|
|
|
return nil, nil, fmt.Errorf("Qemu memory assignment out of bounds")
|
|
|
|
}
|
2018-12-14 00:21:41 +00:00
|
|
|
mem := fmt.Sprintf("%dM", mb)
|
2018-10-17 16:43:15 +00:00
|
|
|
|
|
|
|
absPath, err := GetAbsolutePath("qemu-system-x86_64")
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
args := []string{
|
|
|
|
absPath,
|
|
|
|
"-machine", "type=pc,accel=" + accelerator,
|
|
|
|
"-name", vmID,
|
|
|
|
"-m", mem,
|
|
|
|
"-drive", "file=" + vmPath,
|
|
|
|
"-nographic",
|
|
|
|
}
|
|
|
|
|
|
|
|
var monitorPath string
|
|
|
|
if driverConfig.GracefulShutdown {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return nil, nil, errors.New("QEMU graceful shutdown is unsupported on the Windows platform")
|
|
|
|
}
|
|
|
|
// This socket will be used to manage the virtual machine (for example,
|
|
|
|
// to perform graceful shutdowns)
|
|
|
|
taskDir := filepath.Join(cfg.AllocDir, cfg.Name)
|
|
|
|
fingerPrint := d.buildFingerprint()
|
|
|
|
if fingerPrint.Attributes == nil {
|
|
|
|
return nil, nil, fmt.Errorf("unable to get qemu driver version from fingerprinted attributes")
|
|
|
|
}
|
|
|
|
monitorPath, err = d.getMonitorPath(taskDir, fingerPrint)
|
|
|
|
if err != nil {
|
|
|
|
d.logger.Debug("could not get qemu monitor path", "error", err)
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
d.logger.Debug("got monitor path", "monitorPath", monitorPath)
|
|
|
|
args = append(args, "-monitor", fmt.Sprintf("unix:%s,server,nowait", monitorPath))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add pass through arguments to qemu executable. A user can specify
|
|
|
|
// these arguments in driver task configuration. These arguments are
|
|
|
|
// passed directly to the qemu driver as command line options.
|
|
|
|
// For example, args = [ "-nodefconfig", "-nodefaults" ]
|
|
|
|
// This will allow a VM with embedded configuration to boot successfully.
|
|
|
|
args = append(args, driverConfig.Args...)
|
|
|
|
|
|
|
|
// 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
|
|
|
|
protocols := []string{"udp", "tcp"}
|
|
|
|
if len(cfg.Resources.NomadResources.Networks) > 0 {
|
|
|
|
// Loop through the port map 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
|
|
|
|
var forwarding []string
|
|
|
|
taskPorts := cfg.Resources.NomadResources.Networks[0].PortLabels()
|
|
|
|
for label, guest := range driverConfig.PortMap {
|
|
|
|
host, ok := taskPorts[label]
|
|
|
|
if !ok {
|
|
|
|
return nil, nil, fmt.Errorf("Unknown port label %q", label)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, p := range protocols {
|
|
|
|
forwarding = append(forwarding, fmt.Sprintf("hostfwd=%s::%d-:%d", p, host, guest))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(forwarding) != 0 {
|
|
|
|
args = append(args,
|
|
|
|
"-netdev",
|
|
|
|
fmt.Sprintf("user,id=user.0,%s", strings.Join(forwarding, ",")),
|
|
|
|
"-device", "virtio-net,netdev=user.0",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If using KVM, add optimization args
|
|
|
|
if accelerator == "kvm" {
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
return nil, nil, errors.New("KVM accelerator is unsupported on the Windows platform")
|
|
|
|
}
|
|
|
|
args = append(args,
|
|
|
|
"-enable-kvm",
|
|
|
|
"-cpu", "host",
|
|
|
|
// Do we have cores information available to the Driver?
|
|
|
|
// "-smp", fmt.Sprintf("%d", cores),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
d.logger.Debug("starting QemuVM command ", "args", strings.Join(args, " "))
|
|
|
|
|
|
|
|
pluginLogFile := filepath.Join(cfg.TaskDir().Dir, fmt.Sprintf("%s-executor.out", cfg.Name))
|
2018-12-07 02:13:45 +00:00
|
|
|
executorConfig := &executor.ExecutorConfig{
|
2018-10-17 16:43:15 +00:00
|
|
|
LogFile: pluginLogFile,
|
|
|
|
LogLevel: "debug",
|
|
|
|
}
|
|
|
|
|
2019-01-09 23:06:58 +00:00
|
|
|
execImpl, pluginClient, err := executor.CreateExecutor(
|
|
|
|
d.logger.With("task_name", handle.Config.Name, "alloc_id", handle.Config.AllocID),
|
|
|
|
d.nomadConfig, executorConfig)
|
2018-10-17 16:43:15 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2018-12-07 01:54:14 +00:00
|
|
|
execCmd := &executor.ExecCommand{
|
2018-10-17 16:43:15 +00:00
|
|
|
Cmd: args[0],
|
|
|
|
Args: args[1:],
|
|
|
|
Env: cfg.EnvList(),
|
|
|
|
User: cfg.User,
|
|
|
|
TaskDir: cfg.TaskDir().Dir,
|
|
|
|
StdoutPath: cfg.StdoutPath,
|
|
|
|
StderrPath: cfg.StderrPath,
|
|
|
|
}
|
|
|
|
ps, err := execImpl.Launch(execCmd)
|
|
|
|
if err != nil {
|
|
|
|
pluginClient.Kill()
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
d.logger.Debug("started new QemuVM", "ID", vmID)
|
|
|
|
|
2018-10-31 18:53:37 +00:00
|
|
|
h := &taskHandle{
|
2018-10-17 16:43:15 +00:00
|
|
|
exec: execImpl,
|
|
|
|
pid: ps.Pid,
|
|
|
|
monitorPath: monitorPath,
|
|
|
|
pluginClient: pluginClient,
|
|
|
|
taskConfig: cfg,
|
|
|
|
procState: drivers.TaskStateRunning,
|
|
|
|
startedAt: time.Now().Round(time.Millisecond),
|
|
|
|
logger: d.logger,
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
qemuDriverState := TaskState{
|
2019-01-15 01:02:44 +00:00
|
|
|
ReattachConfig: pstructs.ReattachConfigFromGoPlugin(pluginClient.ReattachConfig()),
|
2018-10-17 16:43:15 +00:00
|
|
|
Pid: ps.Pid,
|
|
|
|
TaskConfig: cfg,
|
|
|
|
StartedAt: h.startedAt,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := handle.SetDriverState(&qemuDriverState); err != nil {
|
|
|
|
d.logger.Error("failed to start task, error setting driver state", "error", err)
|
|
|
|
execImpl.Shutdown("", 0)
|
|
|
|
pluginClient.Kill()
|
|
|
|
return nil, nil, fmt.Errorf("failed to set driver state: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
d.tasks.Set(cfg.ID, h)
|
|
|
|
go h.run()
|
|
|
|
|
2019-01-04 23:01:35 +00:00
|
|
|
var driverNetwork *drivers.DriverNetwork
|
2018-10-17 16:43:15 +00:00
|
|
|
if len(driverConfig.PortMap) == 1 {
|
2019-01-04 23:01:35 +00:00
|
|
|
driverNetwork = &drivers.DriverNetwork{
|
2018-10-17 16:43:15 +00:00
|
|
|
PortMap: driverConfig.PortMap,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return handle, driverNetwork, nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) WaitTask(ctx context.Context, taskID string) (<-chan *drivers.ExitResult, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
handle, ok := d.tasks.Get(taskID)
|
|
|
|
if !ok {
|
|
|
|
return nil, drivers.ErrTaskNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
ch := make(chan *drivers.ExitResult)
|
|
|
|
go d.handleWait(ctx, handle, ch)
|
|
|
|
|
|
|
|
return ch, nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) StopTask(taskID string, timeout time.Duration, signal string) error {
|
2018-10-17 16:43:15 +00:00
|
|
|
handle, ok := d.tasks.Get(taskID)
|
|
|
|
if !ok {
|
|
|
|
return drivers.ErrTaskNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt a graceful shutdown only if it was configured in the job
|
|
|
|
if handle.monitorPath != "" {
|
|
|
|
if err := sendQemuShutdown(d.logger, handle.monitorPath, handle.pid); err != nil {
|
|
|
|
d.logger.Debug("error sending graceful shutdown ", "pid", handle.pid, "error", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(preetha) we are calling shutdown on the executor here
|
|
|
|
// after attempting a graceful qemu shutdown, qemu process may
|
|
|
|
// not be around when we call exec.shutdown
|
|
|
|
if err := handle.exec.Shutdown(signal, timeout); err != nil {
|
|
|
|
if handle.pluginClient.Exited() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("executor Shutdown failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) DestroyTask(taskID string, force bool) error {
|
2018-10-17 16:43:15 +00:00
|
|
|
handle, ok := d.tasks.Get(taskID)
|
|
|
|
if !ok {
|
|
|
|
return drivers.ErrTaskNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
if handle.IsRunning() && !force {
|
|
|
|
return fmt.Errorf("cannot destroy running task")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !handle.pluginClient.Exited() {
|
|
|
|
if handle.IsRunning() {
|
|
|
|
if err := handle.exec.Shutdown("", 0); err != nil {
|
|
|
|
handle.logger.Error("destroying executor failed", "err", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handle.pluginClient.Kill()
|
|
|
|
}
|
|
|
|
|
|
|
|
d.tasks.Delete(taskID)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) InspectTask(taskID string) (*drivers.TaskStatus, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
handle, ok := d.tasks.Get(taskID)
|
|
|
|
if !ok {
|
|
|
|
return nil, drivers.ErrTaskNotFound
|
|
|
|
}
|
|
|
|
|
2018-10-31 18:53:37 +00:00
|
|
|
return handle.TaskStatus(), nil
|
2018-10-17 16:43:15 +00:00
|
|
|
}
|
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
func (d *Driver) TaskStats(ctx context.Context, taskID string, interval time.Duration) (<-chan *drivers.TaskResourceUsage, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
handle, ok := d.tasks.Get(taskID)
|
|
|
|
if !ok {
|
|
|
|
return nil, drivers.ErrTaskNotFound
|
|
|
|
}
|
|
|
|
|
2018-12-11 20:27:50 +00:00
|
|
|
return handle.exec.Stats(ctx, interval)
|
2018-10-17 16:43:15 +00:00
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) TaskEvents(ctx context.Context) (<-chan *drivers.TaskEvent, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
return d.eventer.TaskEvents(ctx)
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) SignalTask(taskID string, signal string) error {
|
2018-10-17 16:43:15 +00:00
|
|
|
return fmt.Errorf("Qemu driver can't signal commands")
|
|
|
|
}
|
|
|
|
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) ExecTask(taskID string, cmdArgs []string, timeout time.Duration) (*drivers.ExecTaskResult, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
return nil, fmt.Errorf("Qemu driver can't execute commands")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAbsolutePath returns the absolute path of the passed binary by resolving
|
|
|
|
// it in the path and following symlinks.
|
|
|
|
func GetAbsolutePath(bin string) (string, error) {
|
|
|
|
lp, err := exec.LookPath(bin)
|
|
|
|
if err != nil {
|
|
|
|
return "", fmt.Errorf("failed to resolve path to %q executable: %v", bin, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return filepath.EvalSymlinks(lp)
|
|
|
|
}
|
|
|
|
|
2018-10-31 18:53:37 +00:00
|
|
|
func (d *Driver) handleWait(ctx context.Context, handle *taskHandle, ch chan *drivers.ExitResult) {
|
2018-10-17 16:43:15 +00:00
|
|
|
defer close(ch)
|
|
|
|
var result *drivers.ExitResult
|
2018-12-05 16:04:18 +00:00
|
|
|
ps, err := handle.exec.Wait(ctx)
|
2018-10-17 16:43:15 +00:00
|
|
|
if err != nil {
|
|
|
|
result = &drivers.ExitResult{
|
|
|
|
Err: fmt.Errorf("executor: error waiting on process: %v", err),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
result = &drivers.ExitResult{
|
|
|
|
ExitCode: ps.ExitCode,
|
|
|
|
Signal: ps.Signal,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
case <-d.ctx.Done():
|
|
|
|
case ch <- result:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// getMonitorPath is used to determine whether a qemu monitor socket can be
|
|
|
|
// safely created and accessed in the task directory by the version of qemu
|
|
|
|
// present on the host. If it is safe to use, the socket's full path is
|
|
|
|
// returned along with a nil error. Otherwise, an empty string is returned
|
|
|
|
// along with a descriptive error.
|
2018-10-30 21:05:31 +00:00
|
|
|
func (d *Driver) getMonitorPath(dir string, fingerPrint *drivers.Fingerprint) (string, error) {
|
2018-10-17 16:43:15 +00:00
|
|
|
var longPathSupport bool
|
2018-10-30 21:05:31 +00:00
|
|
|
currentQemuVer := fingerPrint.Attributes[driverVersionAttr]
|
2018-11-21 00:30:39 +00:00
|
|
|
currentQemuSemver := semver.New(currentQemuVer.GoString())
|
2018-10-31 18:53:37 +00:00
|
|
|
if currentQemuSemver.LessThan(*qemuVersionLongSocketPathFix) {
|
2018-10-17 16:43:15 +00:00
|
|
|
longPathSupport = false
|
|
|
|
d.logger.Debug("long socket paths are not available in this version of QEMU", "version", currentQemuVer)
|
|
|
|
} else {
|
|
|
|
longPathSupport = true
|
|
|
|
d.logger.Debug("long socket paths available in this version of QEMU", "version", currentQemuVer)
|
|
|
|
}
|
2018-10-31 18:53:37 +00:00
|
|
|
fullSocketPath := fmt.Sprintf("%s/%s", dir, qemuMonitorSocketName)
|
|
|
|
if len(fullSocketPath) > qemuLegacyMaxMonitorPathLen && longPathSupport == false {
|
2018-10-17 16:43:15 +00:00
|
|
|
return "", fmt.Errorf("monitor path is too long for this version of qemu")
|
|
|
|
}
|
|
|
|
return fullSocketPath, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// sendQemuShutdown attempts to issue an ACPI power-off command via the qemu
|
|
|
|
// monitor
|
|
|
|
func sendQemuShutdown(logger hclog.Logger, monitorPath string, userPid int) error {
|
|
|
|
if monitorPath == "" {
|
|
|
|
return errors.New("monitorPath not set")
|
|
|
|
}
|
|
|
|
monitorSocket, err := net.Dial("unix", monitorPath)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warn("could not connect to qemu monitor", "pid", userPid, "monitorPath", monitorPath, "error", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer monitorSocket.Close()
|
2018-10-25 18:47:17 +00:00
|
|
|
logger.Debug("sending graceful shutdown command to qemu monitor socket", "monitor_path", monitorPath, "pid", userPid)
|
2018-10-31 18:53:37 +00:00
|
|
|
_, err = monitorSocket.Write([]byte(qemuGracefulShutdownMsg))
|
2018-10-17 16:43:15 +00:00
|
|
|
if err != nil {
|
2018-10-31 18:53:37 +00:00
|
|
|
logger.Warn("failed to send shutdown message", "shutdown message", qemuGracefulShutdownMsg, "monitorPath", monitorPath, "userPid", userPid, "error", err)
|
2018-10-17 16:43:15 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2018-12-20 12:25:07 +00:00
|
|
|
|
|
|
|
func (d *Driver) Shutdown() {
|
|
|
|
d.signalShutdown()
|
|
|
|
}
|