2016-07-10 06:56:31 +00:00
|
|
|
package executor
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2016-08-04 22:03:56 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/env"
|
2016-07-10 06:56:31 +00:00
|
|
|
cstructs "github.com/hashicorp/nomad/client/driver/structs"
|
|
|
|
"github.com/hashicorp/nomad/client/testutil"
|
2016-08-04 22:03:56 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/mock"
|
2016-07-10 06:56:31 +00:00
|
|
|
)
|
|
|
|
|
2016-08-04 22:03:56 +00:00
|
|
|
func testExecutorContextWithChroot(t *testing.T) *ExecutorContext {
|
|
|
|
taskEnv := env.NewTaskEnvironment(mock.Node())
|
|
|
|
task, allocDir := mockAllocDir(t)
|
|
|
|
ctx := &ExecutorContext{
|
|
|
|
TaskEnv: taskEnv,
|
|
|
|
Task: task,
|
|
|
|
AllocDir: allocDir,
|
|
|
|
ChrootEnv: map[string]string{
|
|
|
|
"/etc/ld.so.cache": "/etc/ld.so.cache",
|
|
|
|
"/etc/ld.so.conf": "/etc/ld.so.conf",
|
|
|
|
"/etc/ld.so.conf.d": "/etc/ld.so.conf.d",
|
|
|
|
"/lib": "/lib",
|
|
|
|
"/lib64": "/lib64",
|
|
|
|
"/usr/lib": "/usr/lib",
|
|
|
|
"/bin/ls": "/bin/ls",
|
|
|
|
"/foobar": "/does/not/exist",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
|
2016-07-10 06:56:31 +00:00
|
|
|
func TestExecutor_IsolationAndConstraints(t *testing.T) {
|
|
|
|
testutil.ExecCompatible(t)
|
|
|
|
|
2016-08-04 22:03:56 +00:00
|
|
|
execCmd := ExecCommand{Cmd: "/bin/ls", Args: []string{"-F", "/"}}
|
|
|
|
ctx := testExecutorContextWithChroot(t)
|
2016-07-10 06:56:31 +00:00
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
|
|
|
|
execCmd.FSIsolation = true
|
|
|
|
execCmd.ResourceLimits = true
|
|
|
|
execCmd.User = cstructs.DefaultUnpriviledgedUser
|
|
|
|
|
|
|
|
executor := NewExecutor(log.New(os.Stdout, "", log.LstdFlags))
|
|
|
|
ps, err := executor.LaunchCmd(&execCmd, ctx)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error in launching command: %v", err)
|
|
|
|
}
|
|
|
|
if ps.Pid == 0 {
|
|
|
|
t.Fatalf("expected process to start and have non zero pid")
|
|
|
|
}
|
|
|
|
_, err = executor.Wait()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("error in waiting for command: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the resource contraints were applied
|
|
|
|
memLimits := filepath.Join(ps.IsolationConfig.CgroupPaths["memory"], "memory.limit_in_bytes")
|
|
|
|
data, err := ioutil.ReadFile(memLimits)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
expectedMemLim := strconv.Itoa(ctx.Task.Resources.MemoryMB * 1024 * 1024)
|
|
|
|
actualMemLim := strings.TrimSpace(string(data))
|
|
|
|
if actualMemLim != expectedMemLim {
|
|
|
|
t.Fatalf("actual mem limit: %v, expected: %v", string(data), expectedMemLim)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := executor.Exit(); err != nil {
|
|
|
|
t.Fatalf("error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if Nomad has actually removed the cgroups
|
|
|
|
if _, err := os.Stat(memLimits); err == nil {
|
|
|
|
t.Fatalf("file %v hasn't been removed", memLimits)
|
|
|
|
}
|
|
|
|
|
2016-08-04 22:03:56 +00:00
|
|
|
expected := "bin/\netc/\nlib/\nlib64/\nusr/"
|
2016-07-10 06:56:31 +00:00
|
|
|
file := filepath.Join(ctx.AllocDir.LogDir(), "web.stdout.0")
|
|
|
|
output, err := ioutil.ReadFile(file)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Couldn't read file %v", file)
|
|
|
|
}
|
|
|
|
|
|
|
|
act := strings.TrimSpace(string(output))
|
|
|
|
if act != expected {
|
|
|
|
t.Fatalf("Command output incorrectly: want %v; got %v", expected, act)
|
|
|
|
}
|
|
|
|
}
|