2015-10-08 18:36:22 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2015-12-23 00:10:30 +00:00
|
|
|
"encoding/json"
|
2015-10-08 18:36:22 +00:00
|
|
|
"fmt"
|
2015-12-23 00:10:30 +00:00
|
|
|
"log"
|
2016-02-03 02:54:04 +00:00
|
|
|
"os/exec"
|
2015-10-08 18:36:22 +00:00
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
2016-02-03 02:54:04 +00:00
|
|
|
"github.com/hashicorp/go-plugin"
|
2015-10-08 18:36:22 +00:00
|
|
|
"github.com/hashicorp/nomad/client/config"
|
2016-02-05 00:03:17 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/executor"
|
2015-11-17 00:23:03 +00:00
|
|
|
cstructs "github.com/hashicorp/nomad/client/driver/structs"
|
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"
|
2016-02-03 02:54:04 +00:00
|
|
|
"github.com/hashicorp/nomad/helper/discover"
|
2015-10-08 18:36:22 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-11-14 02:09:42 +00:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2015-10-08 18:36:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// The option that enables this driver in the Config.Options map.
|
|
|
|
rawExecConfigOption = "driver.raw_exec.enable"
|
|
|
|
)
|
|
|
|
|
|
|
|
// The RawExecDriver is a privileged version of the exec driver. It provides no
|
|
|
|
// resource isolation and just fork/execs. The Exec driver should be preferred
|
|
|
|
// and this should only be used when explicitly needed.
|
|
|
|
type RawExecDriver struct {
|
|
|
|
DriverContext
|
2015-11-05 21:46:02 +00:00
|
|
|
fingerprint.StaticFingerprinter
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// rawExecHandle is returned from Start/Open as a handle to the PID
|
|
|
|
type rawExecHandle struct {
|
2016-02-03 02:54:04 +00:00
|
|
|
pluginClient *plugin.Client
|
2016-02-04 01:22:21 +00:00
|
|
|
userPid int
|
2016-02-05 00:03:17 +00:00
|
|
|
executor executor.Executor
|
2016-02-03 02:54:04 +00:00
|
|
|
killTimeout time.Duration
|
|
|
|
logger *log.Logger
|
|
|
|
waitCh chan *cstructs.WaitResult
|
|
|
|
doneCh chan struct{}
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewRawExecDriver is used to create a new raw exec driver
|
|
|
|
func NewRawExecDriver(ctx *DriverContext) Driver {
|
2015-11-05 21:46:02 +00:00
|
|
|
return &RawExecDriver{DriverContext: *ctx}
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *RawExecDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) {
|
|
|
|
// Check that the user has explicitly enabled this executor.
|
2015-12-10 23:03:25 +00:00
|
|
|
enabled := cfg.ReadBoolDefault(rawExecConfigOption, false)
|
2015-10-09 18:29:59 +00:00
|
|
|
|
|
|
|
if enabled {
|
2015-10-08 18:36:22 +00:00
|
|
|
d.logger.Printf("[WARN] driver.raw_exec: raw exec is enabled. Only enable if needed")
|
|
|
|
node.Attributes["driver.raw_exec"] = "1"
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *RawExecDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, error) {
|
2015-11-14 04:22:49 +00:00
|
|
|
var driverConfig ExecDriverConfig
|
2015-11-14 02:09:42 +00:00
|
|
|
if err := mapstructure.WeakDecode(task.Config, &driverConfig); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-10-08 18:36:22 +00:00
|
|
|
// Get the tasks local directory.
|
|
|
|
taskName := d.DriverContext.taskName
|
|
|
|
taskDir, ok := ctx.AllocDir.TaskDirs[taskName]
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("Could not find task directory for task: %v", d.DriverContext.taskName)
|
|
|
|
}
|
|
|
|
|
2015-10-15 21:40:08 +00:00
|
|
|
// Get the command to be ran
|
2015-11-14 02:09:42 +00:00
|
|
|
command := driverConfig.Command
|
|
|
|
if command == "" {
|
2015-10-15 21:40:08 +00:00
|
|
|
return nil, fmt.Errorf("missing command for Raw Exec driver")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if an artificat is specified and attempt to download it
|
|
|
|
source, ok := task.Config["artifact_source"]
|
|
|
|
if ok && source != "" {
|
|
|
|
// Proceed to download an artifact to be executed.
|
2015-11-05 15:23:45 +00:00
|
|
|
_, err := getter.GetArtifact(
|
2016-02-04 23:18:22 +00:00
|
|
|
taskDir,
|
2015-11-14 02:09:42 +00:00
|
|
|
driverConfig.ArtifactSource,
|
|
|
|
driverConfig.Checksum,
|
2015-11-05 15:23:45 +00:00
|
|
|
d.logger,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-10-15 21:40:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-03 02:54:04 +00:00
|
|
|
bin, err := discover.NomadExecutable()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to find the nomad binary: %v", err)
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
2016-02-05 01:36:31 +00:00
|
|
|
pluginLogFile := filepath.Join(ctx.AllocDir.AllocDir, "plugin.out")
|
2016-02-03 02:54:04 +00:00
|
|
|
pluginConfig := &plugin.ClientConfig{
|
2016-02-05 01:36:31 +00:00
|
|
|
Cmd: exec.Command(bin, "executor", pluginLogFile),
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
2016-02-05 00:03:17 +00:00
|
|
|
exec, pluginClient, err := createExecutor(pluginConfig, d.config.LogOutput)
|
2016-02-03 02:54:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
2016-02-05 00:03:17 +00:00
|
|
|
executorCtx := &executor.ExecutorContext{
|
2016-02-04 18:09:52 +00:00
|
|
|
TaskEnv: d.taskEnv,
|
|
|
|
AllocDir: ctx.AllocDir,
|
|
|
|
TaskName: task.Name,
|
|
|
|
TaskResources: task.Resources,
|
2016-02-03 02:54:04 +00:00
|
|
|
}
|
2016-02-05 00:03:17 +00:00
|
|
|
ps, err := exec.LaunchCmd(&executor.ExecCommand{Cmd: command, Args: driverConfig.Args}, executorCtx)
|
2016-02-03 02:54:04 +00:00
|
|
|
if err != nil {
|
2016-02-04 01:22:21 +00:00
|
|
|
pluginClient.Kill()
|
2016-02-03 02:54:04 +00:00
|
|
|
return nil, fmt.Errorf("error starting process via the plugin: %v", err)
|
|
|
|
}
|
2016-02-04 01:46:45 +00:00
|
|
|
d.logger.Printf("[INFO] started process with pid: %v", ps.Pid)
|
2015-10-08 18:36:22 +00:00
|
|
|
|
|
|
|
// Return a driver handle
|
2016-02-03 02:54:04 +00:00
|
|
|
h := &rawExecHandle{
|
|
|
|
pluginClient: pluginClient,
|
2016-02-05 00:03:17 +00:00
|
|
|
executor: exec,
|
2016-02-04 01:22:21 +00:00
|
|
|
userPid: ps.Pid,
|
2016-02-03 02:54:04 +00:00
|
|
|
killTimeout: d.DriverContext.KillTimeout(task),
|
|
|
|
logger: d.logger,
|
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan *cstructs.WaitResult, 1),
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
2015-12-23 00:10:30 +00:00
|
|
|
type rawExecId struct {
|
2016-02-03 02:54:04 +00:00
|
|
|
KillTimeout time.Duration
|
2016-02-04 01:22:21 +00:00
|
|
|
UserPid int
|
2016-02-05 00:03:17 +00:00
|
|
|
PluginConfig *ExecutorReattachConfig
|
2015-12-23 00:10:30 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
func (d *RawExecDriver) Open(ctx *ExecContext, handleID string) (DriverHandle, error) {
|
2015-12-23 00:10:30 +00:00
|
|
|
id := &rawExecId{}
|
|
|
|
if err := json.Unmarshal([]byte(handleID), id); err != nil {
|
|
|
|
return nil, fmt.Errorf("Failed to parse handle '%s': %v", handleID, err)
|
|
|
|
}
|
|
|
|
|
2016-02-03 02:54:04 +00:00
|
|
|
pluginConfig := &plugin.ClientConfig{
|
2016-02-04 20:55:13 +00:00
|
|
|
Reattach: id.PluginConfig.PluginConfig(),
|
2016-02-03 02:54:04 +00:00
|
|
|
}
|
2016-02-04 21:34:14 +00:00
|
|
|
executor, pluginClient, err := createExecutor(pluginConfig, d.config.LogOutput)
|
2016-02-03 02:54:04 +00:00
|
|
|
if err != nil {
|
2016-02-04 21:53:30 +00:00
|
|
|
d.logger.Println("[ERROR] error connecting to plugin so destroying plugin pid and user pid")
|
|
|
|
if e := destroyPlugin(id.PluginConfig.Pid, id.UserPid); e != nil {
|
2016-02-04 23:39:29 +00:00
|
|
|
d.logger.Printf("[ERROR] error destroying plugin and userpid: %v", e)
|
2016-02-04 21:53:30 +00:00
|
|
|
}
|
2016-02-03 02:54:04 +00:00
|
|
|
return nil, fmt.Errorf("error connecting to plugin: %v", err)
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return a driver handle
|
2016-02-04 01:46:45 +00:00
|
|
|
h := &rawExecHandle{
|
2016-02-04 21:34:14 +00:00
|
|
|
pluginClient: pluginClient,
|
2016-02-03 02:54:04 +00:00
|
|
|
executor: executor,
|
2016-02-04 01:46:45 +00:00
|
|
|
userPid: id.UserPid,
|
2016-02-03 02:54:04 +00:00
|
|
|
logger: d.logger,
|
|
|
|
killTimeout: id.KillTimeout,
|
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan *cstructs.WaitResult, 1),
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rawExecHandle) ID() string {
|
2015-12-23 00:10:30 +00:00
|
|
|
id := rawExecId{
|
2016-02-03 02:54:04 +00:00
|
|
|
KillTimeout: h.killTimeout,
|
2016-02-05 00:03:17 +00:00
|
|
|
PluginConfig: NewExecutorReattachConfig(h.pluginClient.ReattachConfig()),
|
2016-02-04 01:22:21 +00:00
|
|
|
UserPid: h.userPid,
|
2015-12-23 00:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
data, err := json.Marshal(id)
|
|
|
|
if err != nil {
|
|
|
|
h.logger.Printf("[ERR] driver.raw_exec: failed to marshal ID to JSON: %s", err)
|
|
|
|
}
|
|
|
|
return string(data)
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 06:07:13 +00:00
|
|
|
func (h *rawExecHandle) WaitCh() chan *cstructs.WaitResult {
|
2015-10-08 18:36:22 +00:00
|
|
|
return h.waitCh
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rawExecHandle) Update(task *structs.Task) error {
|
2016-02-04 03:43:44 +00:00
|
|
|
// Store the updated kill timeout.
|
|
|
|
h.killTimeout = task.KillTimeout
|
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
// Update is not possible
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rawExecHandle) Kill() error {
|
2016-02-03 02:54:04 +00:00
|
|
|
h.executor.ShutDown()
|
2015-10-08 18:36:22 +00:00
|
|
|
select {
|
|
|
|
case <-h.doneCh:
|
|
|
|
return nil
|
2015-12-23 00:10:30 +00:00
|
|
|
case <-time.After(h.killTimeout):
|
2016-02-04 02:01:34 +00:00
|
|
|
return h.executor.Exit()
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rawExecHandle) run() {
|
2016-02-03 02:54:04 +00:00
|
|
|
ps, err := h.executor.Wait()
|
2015-10-08 18:36:22 +00:00
|
|
|
close(h.doneCh)
|
2016-02-03 02:54:04 +00:00
|
|
|
h.waitCh <- &cstructs.WaitResult{ExitCode: ps.ExitCode, Signal: 0, Err: err}
|
2015-10-08 18:36:22 +00:00
|
|
|
close(h.waitCh)
|
2016-02-03 02:54:04 +00:00
|
|
|
h.pluginClient.Kill()
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|