2015-09-29 21:48:10 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2015-10-07 22:24:16 +00:00
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"regexp"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/client/config"
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-09-29 21:48:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-10-07 22:24:16 +00:00
|
|
|
reRktVersion = regexp.MustCompile("rkt version ([\\d\\.]+).+")
|
|
|
|
reAppcVersion = regexp.MustCompile("appc version ([\\d\\.]+).+")
|
2015-09-29 21:48:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RktDriver is a driver for running images via Rkt
|
|
|
|
// We attempt to chose sane defaults for now, with more configuration available
|
|
|
|
// planned in the future
|
|
|
|
type RktDriver struct {
|
2015-10-07 22:24:16 +00:00
|
|
|
DriverContext
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// rktHandle is returned from Start/Open as a handle to the PID
|
|
|
|
type rktHandle struct {
|
2015-10-07 22:24:16 +00:00
|
|
|
proc *os.Process
|
|
|
|
name string
|
|
|
|
logger *log.Logger
|
|
|
|
waitCh chan error
|
|
|
|
doneCh chan struct{}
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// rktPID is a struct to map the pid running the process to the vm image on
|
|
|
|
// disk
|
|
|
|
type rktPID struct {
|
2015-10-07 22:24:16 +00:00
|
|
|
Pid int
|
|
|
|
Name string
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewRktDriver is used to create a new exec driver
|
|
|
|
func NewRktDriver(ctx *DriverContext) Driver {
|
2015-10-07 22:24:16 +00:00
|
|
|
return &RktDriver{*ctx}
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *RktDriver) Fingerprint(cfg *config.Config, node *structs.Node) (bool, error) {
|
2015-10-07 22:24:16 +00:00
|
|
|
// Only enable if we are root when running on non-windows systems.
|
|
|
|
if runtime.GOOS != "windows" && syscall.Geteuid() != 0 {
|
|
|
|
d.logger.Printf("[DEBUG] driver.rkt: must run as root user, disabling")
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
outBytes, err := exec.Command("rkt", "version").Output()
|
|
|
|
if err != nil {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
out := strings.TrimSpace(string(outBytes))
|
|
|
|
|
|
|
|
rktMatches := reRktVersion.FindStringSubmatch(out)
|
|
|
|
appcMatches := reRktVersion.FindStringSubmatch(out)
|
|
|
|
if len(rktMatches) != 2 || len(appcMatches) != 2 {
|
|
|
|
return false, fmt.Errorf("Unable to parse Rkt version string: %#v", rktMatches)
|
|
|
|
}
|
|
|
|
|
2015-10-12 20:15:37 +00:00
|
|
|
node.Attributes["driver.rkt"] = "1"
|
2015-10-07 22:24:16 +00:00
|
|
|
node.Attributes["driver.rkt.version"] = rktMatches[0]
|
|
|
|
node.Attributes["driver.rkt.appc.version"] = appcMatches[1]
|
|
|
|
|
|
|
|
return true, nil
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run an existing Rkt image.
|
|
|
|
func (d *RktDriver) Start(ctx *ExecContext, task *structs.Task) (DriverHandle, error) {
|
2015-10-07 22:24:16 +00:00
|
|
|
trust_prefix, ok := task.Config["trust_prefix"]
|
|
|
|
if !ok || trust_prefix == "" {
|
|
|
|
return nil, fmt.Errorf("Missing trust prefix for rkt")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add the given trust prefix
|
|
|
|
var outBuf, errBuf bytes.Buffer
|
|
|
|
cmd := exec.Command("rkt", "trust", fmt.Sprintf("--prefix=%s", trust_prefix))
|
|
|
|
cmd.Stdout = &outBuf
|
|
|
|
cmd.Stderr = &errBuf
|
|
|
|
d.logger.Printf("[DEBUG] driver.rkt: starting rkt command: %q", cmd.Args)
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error running rkt: %s\n\nOutput: %s\n\nError: %s",
|
|
|
|
err, outBuf.String(), errBuf.String())
|
|
|
|
}
|
|
|
|
d.logger.Printf("[DEBUG] driver.rkt: added trust prefix: %q", trust_prefix)
|
|
|
|
|
|
|
|
name, ok := task.Config["name"]
|
|
|
|
if !ok || name == "" {
|
|
|
|
return nil, fmt.Errorf("Missing ACI name for rkt")
|
|
|
|
}
|
|
|
|
|
|
|
|
exec_cmd, ok := task.Config["exec"]
|
|
|
|
if !ok || exec_cmd == "" {
|
|
|
|
d.logger.Printf("[WARN] driver.rkt: could not find a command to execute in the ACI, the default command will be executed")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run the ACI
|
|
|
|
var aoutBuf, aerrBuf bytes.Buffer
|
|
|
|
run_cmd := []string{
|
|
|
|
"rkt",
|
|
|
|
"run",
|
|
|
|
"--mds-register=false",
|
|
|
|
name,
|
|
|
|
}
|
|
|
|
if exec_cmd != "" {
|
|
|
|
splitted := strings.Fields(exec_cmd)
|
|
|
|
run_cmd = append(run_cmd, "--exec=", splitted[0], "--")
|
|
|
|
run_cmd = append(run_cmd, splitted[1:]...)
|
|
|
|
run_cmd = append(run_cmd, "---")
|
|
|
|
}
|
|
|
|
acmd := exec.Command(run_cmd[0], run_cmd[1:]...)
|
|
|
|
acmd.Stdout = &aoutBuf
|
|
|
|
acmd.Stderr = &aerrBuf
|
|
|
|
d.logger.Printf("[DEBUG] driver:rkt: starting rkt command: %q", acmd.Args)
|
|
|
|
if err := acmd.Start(); err != nil {
|
|
|
|
return nil, fmt.Errorf(
|
|
|
|
"Error running rkt: %s\n\nOutput: %s\n\nError: %s",
|
|
|
|
err, aoutBuf.String(), aerrBuf.String())
|
|
|
|
}
|
|
|
|
d.logger.Printf("[DEBUG] driver.rkt: started ACI: %q", name)
|
|
|
|
h := &rktHandle{
|
|
|
|
proc: acmd.Process,
|
|
|
|
name: name,
|
|
|
|
logger: d.logger,
|
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan error, 1),
|
|
|
|
}
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *RktDriver) Open(ctx *ExecContext, handleID string) (DriverHandle, error) {
|
2015-10-07 22:24:16 +00:00
|
|
|
// Parse the handle
|
|
|
|
pidBytes := []byte(strings.TrimPrefix(handleID, "Rkt:"))
|
|
|
|
qpid := &rktPID{}
|
|
|
|
if err := json.Unmarshal(pidBytes, qpid); err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to parse Rkt handle '%s': %v", handleID, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the process
|
|
|
|
proc, err := os.FindProcess(qpid.Pid)
|
|
|
|
if proc == nil || err != nil {
|
|
|
|
return nil, fmt.Errorf("failed to find Rkt PID %d: %v", qpid.Pid, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return a driver handle
|
|
|
|
h := &rktHandle{
|
|
|
|
proc: proc,
|
|
|
|
name: qpid.Name,
|
|
|
|
logger: d.logger,
|
|
|
|
doneCh: make(chan struct{}),
|
|
|
|
waitCh: make(chan error, 1),
|
|
|
|
}
|
|
|
|
|
|
|
|
go h.run()
|
|
|
|
return h, nil
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rktHandle) ID() string {
|
2015-10-07 22:24:16 +00:00
|
|
|
// Return a handle to the PID
|
|
|
|
pid := &rktPID{
|
|
|
|
Pid: h.proc.Pid,
|
|
|
|
Name: h.name,
|
|
|
|
}
|
|
|
|
data, err := json.Marshal(pid)
|
|
|
|
if err != nil {
|
|
|
|
h.logger.Printf("[ERR] driver.rkt: failed to marshal rkt PID to JSON: %s", err)
|
|
|
|
}
|
|
|
|
return fmt.Sprintf("Rkt:%s", string(data))
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rktHandle) WaitCh() chan error {
|
2015-10-07 22:24:16 +00:00
|
|
|
return h.waitCh
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rktHandle) Update(task *structs.Task) error {
|
2015-10-07 22:24:16 +00:00
|
|
|
// Update is not possible
|
|
|
|
return nil
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Kill is used to terminate the task. We send an Interrupt
|
|
|
|
// and then provide a 5 second grace period before doing a Kill.
|
|
|
|
func (h *rktHandle) Kill() error {
|
2015-10-07 22:24:16 +00:00
|
|
|
h.proc.Signal(os.Interrupt)
|
|
|
|
select {
|
|
|
|
case <-h.doneCh:
|
|
|
|
return nil
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
return h.proc.Kill()
|
|
|
|
}
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *rktHandle) run() {
|
2015-10-07 22:24:16 +00:00
|
|
|
ps, err := h.proc.Wait()
|
|
|
|
close(h.doneCh)
|
|
|
|
if err != nil {
|
|
|
|
h.waitCh <- err
|
|
|
|
} else if !ps.Success() {
|
|
|
|
h.waitCh <- fmt.Errorf("task exited with error")
|
|
|
|
}
|
|
|
|
close(h.waitCh)
|
2015-09-29 21:48:10 +00:00
|
|
|
}
|