2015-10-08 18:36:22 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2017-02-01 00:43:57 +00:00
|
|
|
"context"
|
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-10-07 19:37:52 +00:00
|
|
|
"os"
|
2015-10-08 18:36:22 +00:00
|
|
|
"path/filepath"
|
|
|
|
"time"
|
|
|
|
|
2016-02-03 02:54:04 +00:00
|
|
|
"github.com/hashicorp/go-plugin"
|
2017-04-21 23:50:20 +00:00
|
|
|
"github.com/hashicorp/nomad/client/allocdir"
|
2015-10-08 18:36:22 +00:00
|
|
|
"github.com/hashicorp/nomad/client/config"
|
2017-04-21 23:50:20 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/env"
|
2016-02-05 00:03:17 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/executor"
|
2016-06-12 03:15:50 +00:00
|
|
|
dstructs "github.com/hashicorp/nomad/client/driver/structs"
|
2015-11-05 21:46:02 +00:00
|
|
|
"github.com/hashicorp/nomad/client/fingerprint"
|
2016-06-12 03:15:50 +00:00
|
|
|
cstructs "github.com/hashicorp/nomad/client/structs"
|
2016-04-09 22:38:42 +00:00
|
|
|
"github.com/hashicorp/nomad/helper/fields"
|
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"
|
2016-04-01 01:11:27 +00:00
|
|
|
|
|
|
|
// The key populated in Node Attributes to indicate presence of the Raw Exec
|
|
|
|
// driver
|
|
|
|
rawExecDriverAttr = "driver.raw_exec"
|
2015-10-08 18:36:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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-03-03 17:21:21 +00:00
|
|
|
version string
|
|
|
|
pluginClient *plugin.Client
|
|
|
|
userPid int
|
|
|
|
executor executor.Executor
|
|
|
|
killTimeout time.Duration
|
|
|
|
maxKillTimeout time.Duration
|
|
|
|
logger *log.Logger
|
2016-06-12 03:15:50 +00:00
|
|
|
waitCh chan *dstructs.WaitResult
|
2016-03-03 17:21:21 +00:00
|
|
|
doneCh chan struct{}
|
2017-05-17 00:33:50 +00:00
|
|
|
taskEnv *env.TaskEnv
|
2017-04-21 23:50:20 +00:00
|
|
|
taskDir *allocdir.TaskDir
|
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
|
|
|
}
|
|
|
|
|
2016-04-09 23:15:09 +00:00
|
|
|
// Validate is used to validate the driver configuration
|
2016-04-08 20:19:43 +00:00
|
|
|
func (d *RawExecDriver) Validate(config map[string]interface{}) error {
|
2016-04-09 22:38:42 +00:00
|
|
|
fd := &fields.FieldData{
|
|
|
|
Raw: config,
|
|
|
|
Schema: map[string]*fields.FieldSchema{
|
|
|
|
"command": &fields.FieldSchema{
|
|
|
|
Type: fields.TypeString,
|
|
|
|
Required: true,
|
|
|
|
},
|
|
|
|
"args": &fields.FieldSchema{
|
|
|
|
Type: fields.TypeArray,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := fd.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-04-08 20:19:43 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-10-19 22:06:23 +00:00
|
|
|
func (d *RawExecDriver) Abilities() DriverAbilities {
|
|
|
|
return DriverAbilities{
|
|
|
|
SendSignals: true,
|
2017-04-13 16:52:16 +00:00
|
|
|
Exec: true,
|
2016-10-19 22:06:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
func (d *RawExecDriver) FSIsolation() cstructs.FSIsolation {
|
|
|
|
return cstructs.FSIsolationNone
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2016-10-26 18:13:53 +00:00
|
|
|
if enabled || cfg.DevMode {
|
2017-02-21 03:35:51 +00:00
|
|
|
d.logger.Printf("[WARN] driver.raw_exec: raw exec is enabled. Only enable if needed")
|
2016-04-01 01:11:27 +00:00
|
|
|
node.Attributes[rawExecDriverAttr] = "1"
|
2015-10-08 18:36:22 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2016-04-01 01:11:27 +00:00
|
|
|
delete(node.Attributes, rawExecDriverAttr)
|
2015-10-08 18:36:22 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2017-05-19 18:08:49 +00:00
|
|
|
func (d *RawExecDriver) Prestart(*ExecContext, *structs.Task) (*PrestartResponse, error) {
|
2017-01-10 21:24:45 +00:00
|
|
|
return nil, nil
|
2016-11-30 00:39:36 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
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
|
|
|
|
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
|
2016-02-23 18:19:40 +00:00
|
|
|
if err := validateCommand(command, "args"); err != nil {
|
|
|
|
return nil, err
|
2015-10-15 21:40:08 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 00:02:20 +00:00
|
|
|
pluginLogFile := filepath.Join(ctx.TaskDir.Dir, "executor.out")
|
2017-01-12 19:50:49 +00:00
|
|
|
executorConfig := &dstructs.ExecutorConfig{
|
|
|
|
LogFile: pluginLogFile,
|
|
|
|
LogLevel: d.config.LogLevel,
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 19:50:49 +00:00
|
|
|
exec, pluginClient, err := createExecutor(d.config.LogOutput, d.config, executorConfig)
|
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{
|
2017-05-23 00:46:40 +00:00
|
|
|
TaskEnv: ctx.TaskEnv,
|
2016-12-03 01:04:07 +00:00
|
|
|
Driver: "raw_exec",
|
2017-03-26 00:05:53 +00:00
|
|
|
AllocID: d.DriverContext.allocID,
|
2016-12-03 01:04:07 +00:00
|
|
|
Task: task,
|
|
|
|
TaskDir: ctx.TaskDir.Dir,
|
|
|
|
LogDir: ctx.TaskDir.LogDir,
|
2016-02-03 02:54:04 +00:00
|
|
|
}
|
2016-10-12 18:35:29 +00:00
|
|
|
if err := exec.SetContext(executorCtx); err != nil {
|
|
|
|
pluginClient.Kill()
|
|
|
|
return nil, fmt.Errorf("failed to set executor context: %v", err)
|
|
|
|
}
|
2016-03-23 11:57:31 +00:00
|
|
|
|
2016-10-12 18:35:29 +00:00
|
|
|
execCmd := &executor.ExecCommand{
|
2016-03-23 11:57:31 +00:00
|
|
|
Cmd: command,
|
|
|
|
Args: driverConfig.Args,
|
|
|
|
User: task.User,
|
2016-10-12 18:35:29 +00:00
|
|
|
}
|
|
|
|
ps, err := exec.LaunchCmd(execCmd)
|
2016-02-03 02:54:04 +00:00
|
|
|
if err != nil {
|
2016-02-04 01:22:21 +00:00
|
|
|
pluginClient.Kill()
|
2016-03-19 19:18:10 +00:00
|
|
|
return nil, err
|
2016-02-03 02:54:04 +00:00
|
|
|
}
|
2016-02-06 02:07:06 +00:00
|
|
|
d.logger.Printf("[DEBUG] driver.raw_exec: started process with pid: %v", ps.Pid)
|
2015-10-08 18:36:22 +00:00
|
|
|
|
|
|
|
// Return a driver handle
|
2016-03-03 17:21:21 +00:00
|
|
|
maxKill := d.DriverContext.config.MaxKillTimeout
|
2016-02-03 02:54:04 +00:00
|
|
|
h := &rawExecHandle{
|
2016-03-03 17:21:21 +00:00
|
|
|
pluginClient: pluginClient,
|
|
|
|
executor: exec,
|
|
|
|
userPid: ps.Pid,
|
|
|
|
killTimeout: GetKillTimeout(task.KillTimeout, maxKill),
|
|
|
|
maxKillTimeout: maxKill,
|
|
|
|
version: d.config.Version,
|
|
|
|
logger: d.logger,
|
|
|
|
doneCh: make(chan struct{}),
|
2016-06-12 03:15:50 +00:00
|
|
|
waitCh: make(chan *dstructs.WaitResult, 1),
|
2017-05-23 00:46:40 +00:00
|
|
|
taskEnv: ctx.TaskEnv,
|
2017-04-21 23:50:20 +00:00
|
|
|
taskDir: ctx.TaskDir,
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
2017-01-14 00:46:08 +00:00
|
|
|
func (d *RawExecDriver) Cleanup(*ExecContext, *CreatedResources) error { return nil }
|
2017-01-10 21:24:45 +00:00
|
|
|
|
2015-12-23 00:10:30 +00:00
|
|
|
type rawExecId struct {
|
2016-03-03 17:21:21 +00:00
|
|
|
Version string
|
|
|
|
KillTimeout time.Duration
|
|
|
|
MaxKillTimeout time.Duration
|
|
|
|
UserPid int
|
|
|
|
PluginConfig *PluginReattachConfig
|
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
|
|
|
}
|
2017-01-12 19:50:49 +00:00
|
|
|
exec, pluginClient, err := createExecutorWithConfig(pluginConfig, d.config.LogOutput)
|
2016-02-03 02:54:04 +00:00
|
|
|
if err != nil {
|
2016-02-24 23:57:58 +00:00
|
|
|
d.logger.Println("[ERR] driver.raw_exec: error connecting to plugin so destroying plugin pid and user pid")
|
2016-02-04 21:53:30 +00:00
|
|
|
if e := destroyPlugin(id.PluginConfig.Pid, id.UserPid); e != nil {
|
2016-02-24 23:57:58 +00:00
|
|
|
d.logger.Printf("[ERR] driver.raw_exec: 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
|
|
|
}
|
|
|
|
|
2016-03-30 05:05:02 +00:00
|
|
|
ver, _ := exec.Version()
|
|
|
|
d.logger.Printf("[DEBUG] driver.raw_exec: version of executor: %v", ver.Version)
|
2016-03-29 23:27:31 +00:00
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
// Return a driver handle
|
2016-02-04 01:46:45 +00:00
|
|
|
h := &rawExecHandle{
|
2016-03-03 17:21:21 +00:00
|
|
|
pluginClient: pluginClient,
|
2016-03-29 23:27:31 +00:00
|
|
|
executor: exec,
|
2016-03-03 17:21:21 +00:00
|
|
|
userPid: id.UserPid,
|
|
|
|
logger: d.logger,
|
|
|
|
killTimeout: id.KillTimeout,
|
|
|
|
maxKillTimeout: id.MaxKillTimeout,
|
|
|
|
version: id.Version,
|
|
|
|
doneCh: make(chan struct{}),
|
2016-06-12 03:15:50 +00:00
|
|
|
waitCh: make(chan *dstructs.WaitResult, 1),
|
2017-05-23 00:46:40 +00:00
|
|
|
taskEnv: ctx.TaskEnv,
|
2017-04-21 23:50:20 +00:00
|
|
|
taskDir: ctx.TaskDir,
|
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-03-03 17:21:21 +00:00
|
|
|
Version: h.version,
|
|
|
|
KillTimeout: h.killTimeout,
|
|
|
|
MaxKillTimeout: h.maxKillTimeout,
|
|
|
|
PluginConfig: NewPluginReattachConfig(h.pluginClient.ReattachConfig()),
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-06-12 03:15:50 +00:00
|
|
|
func (h *rawExecHandle) WaitCh() chan *dstructs.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.
|
2016-03-03 17:21:21 +00:00
|
|
|
h.killTimeout = GetKillTimeout(task.KillTimeout, h.maxKillTimeout)
|
2016-03-17 09:53:31 +00:00
|
|
|
h.executor.UpdateTask(task)
|
2016-02-04 03:43:44 +00:00
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
// Update is not possible
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-02-01 00:43:57 +00:00
|
|
|
func (h *rawExecHandle) Exec(ctx context.Context, cmd string, args []string) ([]byte, int, error) {
|
2017-05-04 23:21:40 +00:00
|
|
|
return executor.ExecScript(ctx, h.taskDir.Dir, h.taskEnv, nil, cmd, args)
|
2017-02-01 00:43:57 +00:00
|
|
|
}
|
|
|
|
|
2016-10-07 19:37:52 +00:00
|
|
|
func (h *rawExecHandle) Signal(s os.Signal) error {
|
2016-10-10 18:46:27 +00:00
|
|
|
return h.executor.Signal(s)
|
2016-10-07 19:37:52 +00:00
|
|
|
}
|
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
func (h *rawExecHandle) Kill() error {
|
2016-02-17 05:00:49 +00:00
|
|
|
if err := h.executor.ShutDown(); err != nil {
|
|
|
|
if h.pluginClient.Exited() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return fmt.Errorf("executor Shutdown failed: %v", err)
|
|
|
|
}
|
|
|
|
|
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-17 05:00:49 +00:00
|
|
|
if h.pluginClient.Exited() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if err := h.executor.Exit(); err != nil {
|
|
|
|
return fmt.Errorf("executor Exit failed: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-28 23:06:01 +00:00
|
|
|
func (h *rawExecHandle) Stats() (*cstructs.TaskResourceUsage, error) {
|
|
|
|
return h.executor.Stats()
|
|
|
|
}
|
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
func (h *rawExecHandle) run() {
|
2016-11-04 21:58:55 +00:00
|
|
|
ps, werr := h.executor.Wait()
|
2015-10-08 18:36:22 +00:00
|
|
|
close(h.doneCh)
|
2016-11-04 21:58:55 +00:00
|
|
|
if ps.ExitCode == 0 && werr != nil {
|
2016-02-09 18:17:33 +00:00
|
|
|
if e := killProcess(h.userPid); e != nil {
|
2016-02-24 23:57:58 +00:00
|
|
|
h.logger.Printf("[ERR] driver.raw_exec: error killing user process: %v", e)
|
2016-02-09 18:17:33 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-23 20:19:45 +00:00
|
|
|
|
2016-11-04 21:58:55 +00:00
|
|
|
// Exit the executor
|
2016-03-18 19:04:11 +00:00
|
|
|
if err := h.executor.Exit(); err != nil {
|
|
|
|
h.logger.Printf("[ERR] driver.raw_exec: error killing executor: %v", err)
|
|
|
|
}
|
2016-02-03 02:54:04 +00:00
|
|
|
h.pluginClient.Kill()
|
2016-11-04 21:58:55 +00:00
|
|
|
|
|
|
|
// Send the results
|
|
|
|
h.waitCh <- &dstructs.WaitResult{ExitCode: ps.ExitCode, Signal: ps.Signal, Err: werr}
|
|
|
|
close(h.waitCh)
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|