2015-09-01 21:57:21 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2015-09-02 16:41:25 +00:00
|
|
|
"bytes"
|
2015-12-23 00:10:30 +00:00
|
|
|
"encoding/json"
|
2015-09-01 21:57:21 +00:00
|
|
|
"fmt"
|
2015-12-23 00:10:30 +00:00
|
|
|
"log"
|
2015-09-01 21:57:21 +00:00
|
|
|
"os/exec"
|
2015-09-03 15:25:09 +00:00
|
|
|
"path/filepath"
|
2015-09-22 23:32:05 +00:00
|
|
|
"runtime"
|
2015-09-01 21:57:21 +00:00
|
|
|
"strings"
|
2015-09-22 23:32:05 +00:00
|
|
|
"syscall"
|
2015-09-01 21:57:21 +00:00
|
|
|
"time"
|
|
|
|
|
2016-02-04 01:46:45 +00:00
|
|
|
"github.com/hashicorp/go-plugin"
|
|
|
|
"github.com/mitchellh/mapstructure"
|
|
|
|
|
2015-09-01 21:57:21 +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-03 21:16:17 +00:00
|
|
|
"github.com/hashicorp/nomad/client/getter"
|
2016-02-04 01:46:45 +00:00
|
|
|
"github.com/hashicorp/nomad/helper/discover"
|
2015-09-01 21:57:21 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// JavaDriver is a simple driver to execute applications packaged in Jars.
|
|
|
|
// It literally just fork/execs tasks with the java command.
|
|
|
|
type JavaDriver struct {
|
2015-09-10 01:06:23 +00:00
|
|
|
DriverContext
|
2015-11-05 21:46:02 +00:00
|
|
|
fingerprint.StaticFingerprinter
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 04:22:49 +00:00
|
|
|
type JavaDriverConfig struct {
|
2015-11-18 23:16:42 +00:00
|
|
|
JvmOpts []string `mapstructure:"jvm_options"`
|
|
|
|
ArtifactSource string `mapstructure:"artifact_source"`
|
|
|
|
Checksum string `mapstructure:"checksum"`
|
|
|
|
Args []string `mapstructure:"args"`
|
2015-11-14 02:09:42 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 21:57:21 +00:00
|
|
|
// javaHandle is returned from Start/Open as a handle to the PID
|
|
|
|
type javaHandle struct {
|
2016-02-04 01:46:45 +00:00
|
|
|
pluginClient *plugin.Client
|
|
|
|
userPid int
|
2016-02-05 00:03:17 +00:00
|
|
|
executor executor.Executor
|
2016-02-04 01:46:45 +00:00
|
|
|
|
2015-12-23 00:10:30 +00:00
|
|
|
killTimeout time.Duration
|
|
|
|
logger *log.Logger
|
|
|
|
waitCh chan *cstructs.WaitResult
|
|
|
|
doneCh chan struct{}
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewJavaDriver is used to create a new exec driver
|
2015-09-10 01:06:23 +00:00
|
|
|
func NewJavaDriver(ctx *DriverContext) Driver {
|
2015-11-05 21:46:02 +00:00
|
|
|
return &JavaDriver{DriverContext: *ctx}
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *JavaDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) {
|
2015-09-22 23:32:05 +00:00
|
|
|
// Only enable if we are root when running on non-windows systems.
|
2015-11-03 20:47:48 +00:00
|
|
|
if runtime.GOOS == "linux" && syscall.Geteuid() != 0 {
|
|
|
|
d.logger.Printf("[DEBUG] driver.java: must run as root user on linux, disabling")
|
2015-09-22 23:32:05 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2015-09-02 16:41:25 +00:00
|
|
|
// Find java version
|
|
|
|
var out bytes.Buffer
|
|
|
|
var erOut bytes.Buffer
|
|
|
|
cmd := exec.Command("java", "-version")
|
|
|
|
cmd.Stdout = &out
|
|
|
|
cmd.Stderr = &erOut
|
|
|
|
err := cmd.Run()
|
|
|
|
if err != nil {
|
|
|
|
// assume Java wasn't found
|
2015-09-03 15:02:48 +00:00
|
|
|
return false, nil
|
2015-09-02 16:41:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 'java -version' returns output on Stderr typically.
|
|
|
|
// Check stdout, but it's probably empty
|
|
|
|
var infoString string
|
|
|
|
if out.String() != "" {
|
|
|
|
infoString = out.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
if erOut.String() != "" {
|
|
|
|
infoString = erOut.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
if infoString == "" {
|
2015-10-16 18:32:37 +00:00
|
|
|
d.logger.Println("[WARN] driver.java: error parsing Java version information, aborting")
|
2015-09-03 15:02:48 +00:00
|
|
|
return false, nil
|
2015-09-02 16:41:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Assume 'java -version' returns 3 lines:
|
|
|
|
// java version "1.6.0_36"
|
|
|
|
// OpenJDK Runtime Environment (IcedTea6 1.13.8) (6b36-1.13.8-0ubuntu1~12.04)
|
|
|
|
// OpenJDK 64-Bit Server VM (build 23.25-b01, mixed mode)
|
|
|
|
// Each line is terminated by \n
|
|
|
|
info := strings.Split(infoString, "\n")
|
|
|
|
versionString := info[0]
|
|
|
|
versionString = strings.TrimPrefix(versionString, "java version ")
|
|
|
|
versionString = strings.Trim(versionString, "\"")
|
2015-09-01 21:57:21 +00:00
|
|
|
node.Attributes["driver.java"] = "1"
|
2015-09-02 16:41:25 +00:00
|
|
|
node.Attributes["driver.java.version"] = versionString
|
|
|
|
node.Attributes["driver.java.runtime"] = info[1]
|
|
|
|
node.Attributes["driver.java.vm"] = info[2]
|
|
|
|
|
2015-09-01 21:57:21 +00:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *JavaDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, error) {
|
2015-11-14 04:22:49 +00:00
|
|
|
var driverConfig JavaDriverConfig
|
2015-11-14 02:09:42 +00:00
|
|
|
if err := mapstructure.WeakDecode(task.Config, &driverConfig); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
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-03 21:16:17 +00:00
|
|
|
// Proceed to download an artifact to be executed.
|
|
|
|
path, 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-03 21:16:17 +00:00
|
|
|
d.logger,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
2015-11-03 21:16:17 +00:00
|
|
|
jarName := filepath.Base(path)
|
|
|
|
|
2015-10-16 19:33:29 +00:00
|
|
|
args := []string{}
|
2015-10-16 18:32:37 +00:00
|
|
|
// Look for jvm options
|
2015-11-18 23:16:42 +00:00
|
|
|
if len(driverConfig.JvmOpts) != 0 {
|
2015-11-17 03:29:06 +00:00
|
|
|
d.logger.Printf("[DEBUG] driver.java: found JVM options: %s", driverConfig.JvmOpts)
|
2015-11-18 23:16:42 +00:00
|
|
|
args = append(args, driverConfig.JvmOpts...)
|
2015-10-16 18:32:37 +00:00
|
|
|
}
|
|
|
|
|
2015-09-26 22:37:48 +00:00
|
|
|
// Build the argument list.
|
2016-02-04 23:26:37 +00:00
|
|
|
args = append(args, "-jar", jarName)
|
2015-11-18 23:16:42 +00:00
|
|
|
if len(driverConfig.Args) != 0 {
|
|
|
|
args = append(args, driverConfig.Args...)
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
2016-02-04 01:46:45 +00:00
|
|
|
bin, err := discover.NomadExecutable()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to find the nomad binary: %v", err)
|
2015-09-15 20:45:48 +00:00
|
|
|
}
|
2016-02-05 01:36:31 +00:00
|
|
|
|
2016-02-05 18:49:54 +00:00
|
|
|
pluginLogFile := filepath.Join(ctx.AllocDir.AllocDir, fmt.Sprintf("%s-plugin.out", task.Name))
|
2016-02-04 01:46:45 +00:00
|
|
|
pluginConfig := &plugin.ClientConfig{
|
2016-02-05 01:36:31 +00:00
|
|
|
Cmd: exec.Command(bin, "executor", pluginLogFile),
|
2015-09-25 23:49:14 +00:00
|
|
|
}
|
|
|
|
|
2016-02-05 00:03:17 +00:00
|
|
|
exec, pluginClient, err := createExecutor(pluginConfig, d.config.LogOutput)
|
2016-02-04 01:46:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
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-04 01:46:45 +00:00
|
|
|
}
|
2016-02-05 00:03:17 +00:00
|
|
|
ps, err := exec.LaunchCmd(&executor.ExecCommand{Cmd: "java", Args: args}, executorCtx)
|
2016-02-04 01:46:45 +00:00
|
|
|
if err != nil {
|
|
|
|
pluginClient.Kill()
|
|
|
|
return nil, fmt.Errorf("error starting process via the plugin: %v", err)
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
2016-02-05 18:49:54 +00:00
|
|
|
d.logger.Printf("[INFO] driver.java: started process with pid: %v", ps.Pid)
|
2015-09-01 21:57:21 +00:00
|
|
|
|
|
|
|
// Return a driver handle
|
|
|
|
h := &javaHandle{
|
2016-02-04 01:46:45 +00:00
|
|
|
pluginClient: pluginClient,
|
2016-02-05 00:03:17 +00:00
|
|
|
executor: exec,
|
2016-02-04 01:46:45 +00:00
|
|
|
userPid: ps.Pid,
|
|
|
|
killTimeout: d.DriverContext.KillTimeout(task),
|
|
|
|
logger: d.logger,
|
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan *cstructs.WaitResult, 1),
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
2015-12-23 00:10:30 +00:00
|
|
|
type javaId struct {
|
2016-02-04 01:46:45 +00:00
|
|
|
KillTimeout time.Duration
|
2016-02-05 00:03:17 +00:00
|
|
|
PluginConfig *ExecutorReattachConfig
|
2016-02-04 01:46:45 +00:00
|
|
|
UserPid int
|
2015-12-23 00:10:30 +00:00
|
|
|
}
|
|
|
|
|
2015-09-01 21:57:21 +00:00
|
|
|
func (d *JavaDriver) Open(ctx *ExecContext, handleID string) (DriverHandle, error) {
|
2015-12-23 00:10:30 +00:00
|
|
|
id := &javaId{}
|
|
|
|
if err := json.Unmarshal([]byte(handleID), id); err != nil {
|
|
|
|
return nil, fmt.Errorf("Failed to parse handle '%s': %v", handleID, err)
|
|
|
|
}
|
|
|
|
|
2016-02-04 01:46:45 +00:00
|
|
|
pluginConfig := &plugin.ClientConfig{
|
2016-02-05 18:49:54 +00:00
|
|
|
Reattach: id.PluginConfig.PluginConfig(),
|
2016-02-04 01:46:45 +00:00
|
|
|
}
|
2016-02-04 21:34:14 +00:00
|
|
|
executor, pluginClient, err := createExecutor(pluginConfig, d.config.LogOutput)
|
2015-09-15 20:45:48 +00:00
|
|
|
if err != nil {
|
2016-02-05 18:49:54 +00:00
|
|
|
d.logger.Println("[ERROR] driver.java: 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-05 18:49:54 +00:00
|
|
|
d.logger.Printf("[ERROR] driver.java: error destroying plugin and userpid: %v", e)
|
2016-02-04 21:53:30 +00:00
|
|
|
}
|
2016-02-04 01:46:45 +00:00
|
|
|
return nil, fmt.Errorf("error connecting to plugin: %v", err)
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return a driver handle
|
|
|
|
h := &javaHandle{
|
2016-02-04 21:34:14 +00:00
|
|
|
pluginClient: pluginClient,
|
2016-02-04 01:46:45 +00:00
|
|
|
executor: executor,
|
|
|
|
userPid: id.UserPid,
|
|
|
|
logger: d.logger,
|
|
|
|
killTimeout: id.KillTimeout,
|
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan *cstructs.WaitResult, 1),
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) ID() string {
|
2015-12-23 00:10:30 +00:00
|
|
|
id := javaId{
|
2016-02-04 01:46:45 +00:00
|
|
|
KillTimeout: h.killTimeout,
|
2016-02-05 00:03:17 +00:00
|
|
|
PluginConfig: NewExecutorReattachConfig(h.pluginClient.ReattachConfig()),
|
2016-02-04 01:46:45 +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.java: failed to marshal ID to JSON: %s", err)
|
|
|
|
}
|
|
|
|
return string(data)
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
2015-11-14 06:07:13 +00:00
|
|
|
func (h *javaHandle) WaitCh() chan *cstructs.WaitResult {
|
2015-09-01 21:57:21 +00:00
|
|
|
return h.waitCh
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) Update(task *structs.Task) error {
|
2016-02-04 03:43:44 +00:00
|
|
|
// Store the updated kill timeout.
|
|
|
|
h.killTimeout = task.KillTimeout
|
|
|
|
|
2015-09-01 21:57:21 +00:00
|
|
|
// Update is not possible
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) Kill() error {
|
2016-02-04 01:46:45 +00:00
|
|
|
h.executor.ShutDown()
|
2015-09-01 21:57:21 +00:00
|
|
|
select {
|
|
|
|
case <-h.doneCh:
|
|
|
|
return nil
|
2015-12-23 00:10:30 +00:00
|
|
|
case <-time.After(h.killTimeout):
|
2016-02-04 01:46:45 +00:00
|
|
|
return h.executor.Exit()
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) run() {
|
2016-02-04 01:46:45 +00:00
|
|
|
ps, err := h.executor.Wait()
|
2015-09-01 21:57:21 +00:00
|
|
|
close(h.doneCh)
|
2016-02-04 01:46:45 +00:00
|
|
|
h.waitCh <- &cstructs.WaitResult{ExitCode: ps.ExitCode, Signal: 0, Err: err}
|
2015-09-01 21:57:21 +00:00
|
|
|
close(h.waitCh)
|
2016-02-04 01:46:45 +00:00
|
|
|
h.pluginClient.Kill()
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|