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

237 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"
"io"
2016-02-04 00:03:43 +00:00
"log"
"os"
"os/exec"
"path/filepath"
"runtime"
"sync"
"syscall"
"time"
cgroupConfig "github.com/opencontainers/runc/libcontainer/configs"
"github.com/hashicorp/nomad/client/allocdir"
"github.com/hashicorp/nomad/client/driver/env"
"github.com/hashicorp/nomad/client/driver/logrotator"
2016-02-04 00:03:43 +00:00
"github.com/hashicorp/nomad/nomad/structs"
)
2016-02-05 00:18:10 +00:00
// ExecutorContext is a wrapper to hold context to configure the command user
// wants to run
2016-02-04 00:03:43 +00:00
type ExecutorContext struct {
2016-02-04 00:09:17 +00:00
TaskEnv *env.TaskEnvironment
AllocDir *allocdir.AllocDir
2016-02-04 18:09:52 +00:00
TaskName string
TaskResources *structs.Resources
LogConfig *structs.LogConfig
2016-02-04 00:09:17 +00:00
FSIsolation bool
ResourceLimits bool
UnprivilegedUser bool
2016-02-04 00:03:43 +00:00
}
2016-02-05 00:18:10 +00:00
// ExecCommand is a wrapper to hold the user command
2016-02-04 00:03:43 +00:00
type ExecCommand struct {
Cmd string
Args []string
}
2016-02-05 00:18:10 +00:00
// 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
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 user wants to run
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-08 18:10:01 +00:00
UpdateLogConfig(logConfig *structs.LogConfig) error
2016-02-04 00:03:43 +00:00
}
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-08 18:10:01 +00:00
lre *logrotator.LogRotator
lro *logrotator.LogRotator
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("[INFO] executor: launching command %v", command.Cmd)
2016-02-04 00:03:43 +00:00
e.ctx = ctx
2016-02-04 19:51:43 +00:00
2016-02-04 00:03:43 +00:00
if err := e.configureTaskDir(); err != nil {
return nil, err
}
if err := e.configureIsolation(); err != nil {
return nil, err
}
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
}
logFileSize := int64(ctx.LogConfig.MaxFileSizeMB * 1024 * 1024)
stdor, stdow := io.Pipe()
lro, err := logrotator.NewLogRotator(filepath.Join(e.taskDir, allocdir.TaskLocal), fmt.Sprintf("%v.stdout", ctx.TaskName), ctx.LogConfig.MaxFiles, logFileSize, e.logger)
2016-02-04 00:03:43 +00:00
if err != nil {
return nil, fmt.Errorf("error creating log rotator for stdout of task %v", err)
2016-02-04 00:03:43 +00:00
}
e.cmd.Stdout = stdow
2016-02-08 18:10:01 +00:00
e.lro = lro
go lro.Start(stdor)
2016-02-04 00:03:43 +00:00
stder, stdew := io.Pipe()
lre, err := logrotator.NewLogRotator(filepath.Join(e.taskDir, allocdir.TaskLocal), fmt.Sprintf("%v.stderr", ctx.TaskName), ctx.LogConfig.MaxFiles, logFileSize, e.logger)
2016-02-04 00:03:43 +00:00
if err != nil {
return nil, fmt.Errorf("error creating log rotator for stderr of task %v", err)
2016-02-04 00:03:43 +00:00
}
e.cmd.Stderr = stdew
2016-02-08 18:10:01 +00:00
e.lre = lre
go lre.Start(stder)
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
}
}
2016-02-04 00:03:43 +00:00
if err := e.cmd.Start(); err != nil {
return nil, fmt.Errorf("error starting command: %v", err)
}
e.applyLimits()
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
}
2016-02-08 18:10:01 +00:00
func (e *UniversalExecutor) UpdateLogConfig(logConfig *structs.LogConfig) error {
e.ctx.LogConfig = logConfig
if e.lro == nil {
return fmt.Errorf("log rotator for stdout doesn't exist")
}
e.lro.MaxFiles = logConfig.MaxFiles
e.lro.FileSize = int64(logConfig.MaxFileSizeMB * 1024 * 1024)
if e.lre == nil {
return fmt.Errorf("log rotator for stderr doesn't exist")
}
e.lre.MaxFiles = logConfig.MaxFiles
e.lre.FileSize = int64(logConfig.MaxFileSizeMB * 1024 * 1024)
return nil
}
2016-02-04 00:26:10 +00:00
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 {
2016-02-04 18:09:52 +00:00
e.logger.Printf("[INFO] Exiting plugin for task %q", e.ctx.TaskName)
if e.cmd.Process == nil {
return fmt.Errorf("executor.exit error: no process found")
}
2016-02-04 00:03:43 +00:00
proc, err := os.FindProcess(e.cmd.Process.Pid)
if err != nil {
return fmt.Errorf("failied to find user process %v: %v", e.cmd.Process.Pid, err)
}
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 20:40:48 +00:00
if err = proc.Kill(); err != nil {
e.logger.Printf("[DEBUG] executor.exit error: %v", err)
}
return nil
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
}