open-nomad/client/driver/java.go

295 lines
7.9 KiB
Go
Raw Normal View History

2015-09-01 21:57:21 +00:00
package driver
import (
"bytes"
"encoding/json"
2015-09-01 21:57:21 +00:00
"fmt"
"log"
2015-09-01 21:57:21 +00:00
"os/exec"
"path/filepath"
"runtime"
2015-09-01 21:57:21 +00:00
"strings"
"syscall"
2015-09-01 21:57:21 +00:00
"time"
"github.com/hashicorp/go-plugin"
"github.com/mitchellh/mapstructure"
"github.com/hashicorp/nomad/client/allocdir"
2015-09-01 21:57:21 +00:00
"github.com/hashicorp/nomad/client/config"
"github.com/hashicorp/nomad/client/driver/plugins"
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"
"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 {
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 {
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 {
pluginClient *plugin.Client
userPid int
executor plugins.Executor
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
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) {
// Only enable if we are root when running on non-windows systems.
if runtime.GOOS == "linux" && syscall.Geteuid() != 0 {
d.logger.Printf("[DEBUG] driver.java: must run as root user on linux, disabling")
return false, nil
}
// 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
return false, nil
}
// '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")
return false, nil
}
// 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"
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
if err := mapstructure.WeakDecode(task.Config, &driverConfig); err != nil {
return nil, err
}
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-11-03 21:16:17 +00:00
// Proceed to download an artifact to be executed.
path, err := getter.GetArtifact(
filepath.Join(taskDir, allocdir.TaskLocal),
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
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)
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.
args = append(args, "-jar", filepath.Join(allocdir.TaskLocal, jarName))
if len(driverConfig.Args) != 0 {
args = append(args, driverConfig.Args...)
2015-09-01 21:57:21 +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
}
pluginConfig := &plugin.ClientConfig{
HandshakeConfig: plugins.HandshakeConfig,
Plugins: plugins.PluginMap,
Cmd: exec.Command(bin, "executor"),
SyncStdout: d.config.LogOutput,
SyncStderr: d.config.LogOutput,
2015-09-25 23:49:14 +00:00
}
executor, pluginClient, err := d.executor(pluginConfig)
if err != nil {
return nil, err
}
executorCtx := &plugins.ExecutorContext{
2016-02-04 18:09:52 +00:00
TaskEnv: d.taskEnv,
AllocDir: ctx.AllocDir,
TaskName: task.Name,
TaskResources: task.Resources,
}
ps, err := executor.LaunchCmd(&plugins.ExecCommand{Cmd: "java", Args: args}, executorCtx)
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
}
d.logger.Printf("[INFO] started process with pid: %v", ps.Pid)
2015-09-01 21:57:21 +00:00
// Return a driver handle
h := &javaHandle{
pluginClient: pluginClient,
executor: executor,
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
}
func (d *JavaDriver) executor(config *plugin.ClientConfig) (plugins.Executor, *plugin.Client, error) {
executorClient := plugin.NewClient(config)
rpcClient, err := executorClient.Client()
if err != nil {
return nil, nil, fmt.Errorf("error creating rpc client for executor plugin: %v", err)
}
rpcClient.SyncStreams(d.config.LogOutput, d.config.LogOutput)
raw, err := rpcClient.Dispense("executor")
if err != nil {
return nil, nil, fmt.Errorf("unable to dispense the executor plugin: %v", err)
}
executorPlugin := raw.(plugins.Executor)
return executorPlugin, executorClient, nil
}
type javaId struct {
KillTimeout time.Duration
PluginConfig *plugin.ReattachConfig
UserPid int
}
2015-09-01 21:57:21 +00:00
func (d *JavaDriver) Open(ctx *ExecContext, handleID string) (DriverHandle, error) {
id := &javaId{}
if err := json.Unmarshal([]byte(handleID), id); err != nil {
return nil, fmt.Errorf("Failed to parse handle '%s': %v", handleID, err)
}
bin, err := discover.NomadExecutable()
if err != nil {
return nil, fmt.Errorf("unable to find the nomad binary: %v", err)
}
pluginConfig := &plugin.ClientConfig{
HandshakeConfig: plugins.HandshakeConfig,
Plugins: plugins.PluginMap,
Cmd: exec.Command(bin, "executor"),
Reattach: id.PluginConfig,
SyncStdout: d.config.LogOutput,
SyncStderr: d.config.LogOutput,
}
executor, client, err := d.executor(pluginConfig)
2015-09-15 20:45:48 +00:00
if err != nil {
return nil, fmt.Errorf("error connecting to plugin: %v", err)
2015-09-01 21:57:21 +00:00
}
// Return a driver handle
h := &javaHandle{
pluginClient: client,
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 {
id := javaId{
KillTimeout: h.killTimeout,
PluginConfig: h.pluginClient.ReattachConfig(),
UserPid: h.userPid,
}
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
}
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 {
// 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 {
h.executor.ShutDown()
2015-09-01 21:57:21 +00:00
select {
case <-h.doneCh:
return nil
case <-time.After(h.killTimeout):
return h.executor.Exit()
2015-09-01 21:57:21 +00:00
}
}
func (h *javaHandle) run() {
ps, err := h.executor.Wait()
2015-09-01 21:57:21 +00:00
close(h.doneCh)
h.waitCh <- &cstructs.WaitResult{ExitCode: ps.ExitCode, Signal: 0, Err: err}
2015-09-01 21:57:21 +00:00
close(h.waitCh)
h.pluginClient.Kill()
2015-09-01 21:57:21 +00:00
}