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"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"path"
|
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-09-15 21:03:03 +00:00
|
|
|
"github.com/hashicorp/nomad/client/executor"
|
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-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 {
|
|
|
|
return &JavaDriver{*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.
|
|
|
|
if runtime.GOOS != "windows" && syscall.Geteuid() != 0 {
|
2015-09-23 00:36:44 +00:00
|
|
|
d.logger.Printf("[DEBUG] driver.java: must run as root user, 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) {
|
|
|
|
// Get the jar source
|
|
|
|
source, ok := task.Config["jar_source"]
|
|
|
|
if !ok || source == "" {
|
|
|
|
return nil, fmt.Errorf("missing jar source for Java Jar driver")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to download the thing
|
|
|
|
// Should be extracted to some kind of Http Fetcher
|
|
|
|
// Right now, assume publicly accessible HTTP url
|
|
|
|
resp, err := http.Get(source)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("Error downloading source for Java driver: %s", err)
|
|
|
|
}
|
|
|
|
|
2015-09-21 21:13:17 +00:00
|
|
|
// Get the tasks local directory.
|
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
|
|
|
}
|
|
|
|
taskLocal := filepath.Join(taskDir, allocdir.TaskLocal)
|
|
|
|
|
|
|
|
// Create a location to download the binary.
|
2015-09-25 23:49:14 +00:00
|
|
|
fName := path.Base(source)
|
|
|
|
fPath := filepath.Join(taskLocal, fName)
|
2015-09-03 15:25:09 +00:00
|
|
|
f, err := os.OpenFile(fPath, os.O_CREATE|os.O_WRONLY, 0666)
|
2015-09-01 21:57:21 +00:00
|
|
|
if err != nil {
|
2015-09-09 19:38:42 +00:00
|
|
|
return nil, fmt.Errorf("Error opening file to download to: %s", err)
|
2015-09-01 21:57:21 +00:00
|
|
|
}
|
2015-09-09 19:38:42 +00:00
|
|
|
|
2015-09-01 21:57:21 +00:00
|
|
|
defer f.Close()
|
2015-09-09 19:38:42 +00:00
|
|
|
defer resp.Body.Close()
|
2015-09-01 21:57:21 +00:00
|
|
|
|
2015-09-21 21:13:17 +00:00
|
|
|
// Copy remote file to local directory for execution
|
2015-09-01 21:57:21 +00:00
|
|
|
// TODO: a retry of sort if io.Copy fails, for large binaries
|
|
|
|
_, ioErr := io.Copy(f, resp.Body)
|
|
|
|
if ioErr != nil {
|
|
|
|
return nil, fmt.Errorf("Error copying jar from source: %s", ioErr)
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
jvm_options, ok := task.Config["jvm_options"]
|
|
|
|
if ok && jvm_options != "" {
|
|
|
|
d.logger.Printf("[DEBUG] driver.java: found JVM options: %s", jvm_options)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build the argument list
|
|
|
|
args = append(args, "-jar", filepath.Join(allocdir.TaskLocal, fName))
|
2015-10-16 05:16:37 +00:00
|
|
|
|
2015-09-26 22:37:48 +00:00
|
|
|
// Build the argument list.
|
|
|
|
if argRaw, ok := task.Config["args"]; ok {
|
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)
|
|
|
|
}
|