open-nomad/client/driver/executor/executor.go

241 lines
6.3 KiB
Go
Raw Normal View History

2016-02-05 00:03:17 +00:00
package executor
2016-02-04 00:03:43 +00:00
import (
"fmt"
"log"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
2016-02-04 00:03:43 +00:00
"sync"
"syscall"
"time"
"github.com/hashicorp/go-multierror"
2016-02-04 00:03:43 +00:00
cgroupConfig "github.com/opencontainers/runc/libcontainer/configs"
"github.com/hashicorp/nomad/client/allocdir"
"github.com/hashicorp/nomad/client/driver/env"
"github.com/hashicorp/nomad/nomad/structs"
)
// ExecutorContext holds context to configure the command user
// wants to run and isolate it
2016-02-04 00:03:43 +00:00
type ExecutorContext struct {
2016-02-06 01:07:02 +00:00
// TaskEnv holds information about the environment of a Task
TaskEnv *env.TaskEnvironment
// AllocDir is the handle to do operations on the alloc dir of
// the task
AllocDir *allocdir.AllocDir
// TaskName is the name of the Task
TaskName string
// TaskResources are the resource constraints for the Task
TaskResources *structs.Resources
// FSIsolation is a flag for drivers to impose file system
// isolation on certain platforms
FSIsolation bool
// ResourceLimits is a flag for drivers to impose resource
// contraints on a Task on certain platforms
ResourceLimits bool
// UnprivilegedUser is a flag for drivers to make the process
// run as nobody
UnprivilegedUser bool
2016-02-04 00:03:43 +00:00
}
// ExecCommand holds the user command and args. It's a lightweight replacement
// of exec.Cmd for serialization purposes.
2016-02-04 00:03:43 +00:00
type ExecCommand struct {
Cmd string
Args []string
}
// ProcessState holds information about the state of a user process.
2016-02-04 00:03:43 +00:00
type ProcessState struct {
Pid int
ExitCode int
Signal int
2016-02-04 00:03:43 +00:00
Time time.Time
}
2016-02-05 00:18:10 +00:00
// Executor is the interface which allows a driver to launch and supervise
// a process
2016-02-04 00:03:43 +00:00
type Executor interface {
LaunchCmd(command *ExecCommand, ctx *ExecutorContext) (*ProcessState, error)
Wait() (*ProcessState, error)
ShutDown() error
Exit() error
}
2016-02-05 00:18:10 +00:00
// UniversalExecutor is an implementation of the Executor which launches and
// supervises processes. In addition to process supervision it provides resource
// and file system isolation
2016-02-04 00:03:43 +00:00
type UniversalExecutor struct {
cmd exec.Cmd
ctx *ExecutorContext
2016-02-04 00:26:10 +00:00
taskDir string
groups *cgroupConfig.Cgroup
exitState *ProcessState
processExited chan interface{}
2016-02-04 00:03:43 +00:00
logger *log.Logger
lock sync.Mutex
}
2016-02-05 00:18:10 +00:00
// NewExecutor returns an Executor
2016-02-04 00:03:43 +00:00
func NewExecutor(logger *log.Logger) Executor {
2016-02-04 00:26:10 +00:00
return &UniversalExecutor{logger: logger, processExited: make(chan interface{})}
2016-02-04 00:03:43 +00:00
}
2016-02-05 00:18:10 +00:00
// LaunchCmd launches a process and returns it's state. It also configures an
// applies isolation on certain platforms.
2016-02-04 00:03:43 +00:00
func (e *UniversalExecutor) LaunchCmd(command *ExecCommand, ctx *ExecutorContext) (*ProcessState, error) {
e.logger.Printf("[DEBUG] executor: launching command %v %v", command.Cmd, strings.Join(command.Args, ""))
2016-02-04 00:03:43 +00:00
e.ctx = ctx
2016-02-04 19:51:43 +00:00
// configuring the task dir
2016-02-04 00:03:43 +00:00
if err := e.configureTaskDir(); err != nil {
return nil, err
}
2016-02-06 01:40:06 +00:00
// configuring the chroot, cgroup and enters the plugin process in the
// chroot
2016-02-04 00:03:43 +00:00
if err := e.configureIsolation(); err != nil {
return nil, err
}
// setting the user of the process
2016-02-04 00:09:17 +00:00
if e.ctx.UnprivilegedUser {
if err := e.runAs("nobody"); err != nil {
return nil, err
}
2016-02-04 00:03:43 +00:00
}
// configuring log rotate
2016-02-04 18:09:52 +00:00
stdoPath := filepath.Join(e.taskDir, allocdir.TaskLocal, fmt.Sprintf("%v.stdout", ctx.TaskName))
2016-02-04 00:03:43 +00:00
stdo, err := os.OpenFile(stdoPath, os.O_CREATE|os.O_RDWR|os.O_APPEND, 0666)
if err != nil {
return nil, err
}
e.cmd.Stdout = stdo
2016-02-04 18:09:52 +00:00
stdePath := filepath.Join(e.taskDir, allocdir.TaskLocal, fmt.Sprintf("%v.stderr", ctx.TaskName))
2016-02-04 00:03:43 +00:00
stde, err := os.OpenFile(stdePath, os.O_CREATE|os.O_RDWR|os.O_APPEND, 0666)
if err != nil {
return nil, err
}
e.cmd.Stderr = stde
// setting the env, path and args for the command
e.ctx.TaskEnv.Build()
2016-02-04 00:03:43 +00:00
e.cmd.Env = ctx.TaskEnv.EnvList()
2016-02-04 19:51:43 +00:00
e.cmd.Path = ctx.TaskEnv.ReplaceEnv(command.Cmd)
2016-02-04 20:21:06 +00:00
e.cmd.Args = append([]string{e.cmd.Path}, ctx.TaskEnv.ParseAndReplace(command.Args)...)
2016-02-04 19:51:43 +00:00
if filepath.Base(command.Cmd) == command.Cmd {
if lp, err := exec.LookPath(command.Cmd); err != nil {
} else {
e.cmd.Path = lp
}
}
// starting the process
2016-02-04 00:03:43 +00:00
if err := e.cmd.Start(); err != nil {
return nil, fmt.Errorf("error starting command: %v", err)
}
2016-02-04 00:26:10 +00:00
go e.wait()
2016-02-04 00:03:43 +00:00
return &ProcessState{Pid: e.cmd.Process.Pid, ExitCode: -1, Time: time.Now()}, nil
}
2016-02-05 00:18:10 +00:00
// Wait waits until a process has exited and returns it's exitcode and errors
2016-02-04 00:03:43 +00:00
func (e *UniversalExecutor) Wait() (*ProcessState, error) {
2016-02-04 00:26:10 +00:00
<-e.processExited
return e.exitState, nil
}
func (e *UniversalExecutor) wait() {
2016-02-04 18:21:33 +00:00
defer close(e.processExited)
2016-02-04 00:03:43 +00:00
err := e.cmd.Wait()
if err == nil {
2016-02-04 00:26:10 +00:00
e.exitState = &ProcessState{Pid: 0, ExitCode: 0, Time: time.Now()}
return
2016-02-04 00:03:43 +00:00
}
exitCode := 1
if exitErr, ok := err.(*exec.ExitError); ok {
if status, ok := exitErr.Sys().(syscall.WaitStatus); ok {
exitCode = status.ExitStatus()
}
}
2016-02-04 00:09:17 +00:00
if e.ctx.FSIsolation {
2016-02-04 00:03:43 +00:00
e.removeChrootMounts()
}
2016-02-04 00:09:17 +00:00
if e.ctx.ResourceLimits {
2016-02-04 00:03:43 +00:00
e.destroyCgroup()
}
2016-02-04 00:26:10 +00:00
e.exitState = &ProcessState{Pid: 0, ExitCode: exitCode, Time: time.Now()}
2016-02-04 00:03:43 +00:00
}
2016-02-05 00:18:10 +00:00
// Exit cleans up the alloc directory, destroys cgroups and kills the user
// process
2016-02-04 00:03:43 +00:00
func (e *UniversalExecutor) Exit() error {
var merr multierror.Error
if e.cmd.Process != nil {
proc, err := os.FindProcess(e.cmd.Process.Pid)
if err != nil {
e.logger.Printf("[ERROR] can't find process with pid: %v, err: %v", e.cmd.Process.Pid, err)
}
if err := proc.Kill(); err != nil {
e.logger.Printf("[ERROR] can't kill process with pid: %v, err: %v", e.cmd.Process.Pid, err)
}
}
2016-02-04 00:09:17 +00:00
if e.ctx.FSIsolation {
if err := e.removeChrootMounts(); err != nil {
merr.Errors = append(merr.Errors, err)
}
2016-02-04 00:03:43 +00:00
}
2016-02-04 00:09:17 +00:00
if e.ctx.ResourceLimits {
if err := e.destroyCgroup(); err != nil {
merr.Errors = append(merr.Errors, err)
}
2016-02-04 00:03:43 +00:00
}
return merr.ErrorOrNil()
2016-02-04 00:03:43 +00:00
}
2016-02-05 00:18:10 +00:00
// Shutdown sends an interrupt signal to the user process
2016-02-04 00:03:43 +00:00
func (e *UniversalExecutor) ShutDown() error {
if e.cmd.Process == nil {
return fmt.Errorf("executor.shutdown error: no process found")
}
2016-02-04 00:03:43 +00:00
proc, err := os.FindProcess(e.cmd.Process.Pid)
if err != nil {
2016-02-04 20:40:48 +00:00
return fmt.Errorf("executor.shutdown error: %v", err)
2016-02-04 00:03:43 +00:00
}
if runtime.GOOS == "windows" {
return proc.Kill()
}
2016-02-04 20:40:48 +00:00
if err = proc.Signal(os.Interrupt); err != nil {
return fmt.Errorf("executor.shutdown error: %v", err)
}
return nil
2016-02-04 00:03:43 +00:00
}
func (e *UniversalExecutor) configureTaskDir() error {
2016-02-04 18:09:52 +00:00
taskDir, ok := e.ctx.AllocDir.TaskDirs[e.ctx.TaskName]
2016-02-04 00:03:43 +00:00
e.taskDir = taskDir
if !ok {
2016-02-04 18:09:52 +00:00
return fmt.Errorf("Couldn't find task directory for task %v", e.ctx.TaskName)
2016-02-04 00:03:43 +00:00
}
e.cmd.Dir = taskDir
return nil
}