2015-09-01 21:57:21 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2015-09-02 16:41:25 +00:00
|
|
|
"bytes"
|
2015-09-01 21:57:21 +00:00
|
|
|
"fmt"
|
|
|
|
"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"
|
|
|
|
|
2015-09-21 21:13:17 +00:00
|
|
|
"github.com/hashicorp/nomad/client/allocdir"
|
2015-09-01 21:57:21 +00:00
|
|
|
"github.com/hashicorp/nomad/client/config"
|
2015-11-05 00:53:27 +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-03 21:16:17 +00:00
|
|
|
"github.com/hashicorp/nomad/client/getter"
|
2015-09-01 21:57:21 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-11-14 02:09:42 +00:00
|
|
|
"github.com/mitchellh/mapstructure"
|
2015-09-01 21:57:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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-14 02:09:42 +00:00
|
|
|
JvmOpts string `mapstructure:"jvm_options"`
|
|
|
|
ArtifactSource string `mapstructure:"artifact_source`
|
|
|
|
Checksum string `mapstructure:"checksum"`
|
|
|
|
Args string `mapstructure:"args"`
|
|
|
|
}
|
|
|
|
|
2015-09-01 21:57:21 +00:00
|
|
|
// javaHandle is returned from Start/Open as a handle to the PID
|
|
|
|
type javaHandle struct {
|
2015-09-15 21:03:03 +00:00
|
|
|
cmd executor.Executor
|
2015-09-01 21:57:21 +00:00
|
|
|
waitCh chan error
|
|
|
|
doneCh chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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(
|
|
|
|
filepath.Join(taskDir, allocdir.TaskLocal),
|
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-09-26 22:37:48 +00:00
|
|
|
// Get the environment variables.
|
|
|
|
envVars := TaskEnvironmentVariables(ctx, task)
|
|
|
|
|
2015-10-16 19:33:29 +00:00
|
|
|
args := []string{}
|
2015-10-16 18:32:37 +00:00
|
|
|
// Look for jvm options
|
2015-11-14 02:09:42 +00:00
|
|
|
jvm_options := driverConfig.JvmOpts
|
|
|
|
if jvm_options != "" {
|
2015-10-16 18:32:37 +00:00
|
|
|
d.logger.Printf("[DEBUG] driver.java: found JVM options: %s", jvm_options)
|
2015-10-16 22:34:50 +00:00
|
|
|
args = append(args, jvm_options)
|
2015-10-16 18:32:37 +00:00
|
|
|
}
|
|
|
|
|
2015-09-26 22:37:48 +00:00
|
|
|
// Build the argument list.
|
2015-10-15 21:40:08 +00:00
|
|
|
args = append(args, "-jar", filepath.Join(allocdir.TaskLocal, jarName))
|
2015-11-14 02:09:42 +00:00
|
|
|
if argRaw := driverConfig.Args; argRaw != "" {
|
2015-09-27 19:17:51 +00:00
|
|
|
args = append(args, argRaw)
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the command
|
|
|
|
// Assumes Java is in the $PATH, but could probably be detected
|
2015-09-27 19:17:51 +00:00
|
|
|
cmd := executor.Command("java", args...)
|
2015-09-23 05:36:10 +00:00
|
|
|
|
|
|
|
// Populate environment variables
|
2015-09-27 00:56:14 +00:00
|
|
|
cmd.Command().Env = envVars.List()
|
2015-09-23 05:36:10 +00:00
|
|
|
|
2015-09-25 23:49:14 +00:00
|
|
|
if err := cmd.Limit(task.Resources); err != nil {
|
2015-09-15 20:45:48 +00:00
|
|
|
return nil, fmt.Errorf("failed to constrain resources: %s", err)
|
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
|
|
|
|
if err := cmd.ConfigureTaskDir(d.taskName, ctx.AllocDir); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to configure task directory: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := cmd.Start(); err != nil {
|
2015-09-01 21:57:21 +00:00
|
|
|
return nil, fmt.Errorf("failed to start source: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a driver handle
|
|
|
|
h := &javaHandle{
|
2015-09-15 20:45:48 +00:00
|
|
|
cmd: cmd,
|
2015-09-01 21:57:21 +00:00
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *JavaDriver) Open(ctx *ExecContext, handleID string) (DriverHandle, error) {
|
|
|
|
// Find the process
|
2015-09-20 01:47:04 +00:00
|
|
|
cmd, err := executor.OpenId(handleID)
|
2015-09-15 20:45:48 +00:00
|
|
|
if err != nil {
|
2015-09-20 01:47:04 +00:00
|
|
|
return nil, fmt.Errorf("failed to open ID %v: %v", handleID, err)
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Return a driver handle
|
|
|
|
h := &javaHandle{
|
2015-09-15 20:45:48 +00:00
|
|
|
cmd: cmd,
|
2015-09-01 21:57:21 +00:00
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) ID() string {
|
2015-09-20 01:47:04 +00:00
|
|
|
id, _ := h.cmd.ID()
|
|
|
|
return id
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) WaitCh() chan error {
|
|
|
|
return h.waitCh
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) Update(task *structs.Task) error {
|
|
|
|
// Update is not possible
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) Kill() error {
|
2015-09-15 20:45:48 +00:00
|
|
|
h.cmd.Shutdown()
|
2015-09-01 21:57:21 +00:00
|
|
|
select {
|
|
|
|
case <-h.doneCh:
|
|
|
|
return nil
|
|
|
|
case <-time.After(5 * time.Second):
|
2015-09-15 20:45:48 +00:00
|
|
|
return h.cmd.ForceStop()
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *javaHandle) run() {
|
2015-09-15 20:45:48 +00:00
|
|
|
err := h.cmd.Wait()
|
2015-09-01 21:57:21 +00:00
|
|
|
close(h.doneCh)
|
|
|
|
if err != nil {
|
|
|
|
h.waitCh <- err
|
|
|
|
}
|
|
|
|
close(h.waitCh)
|
|
|
|
}
|