2014-02-25 11:17:48 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-05-01 18:01:10 -04:00
|
|
|
"archive/tar"
|
2014-02-25 11:17:48 -05:00
|
|
|
"bytes"
|
2014-07-08 16:25:22 -04:00
|
|
|
"encoding/json"
|
2015-02-14 17:25:13 -05:00
|
|
|
"errors"
|
2014-02-25 11:17:48 -05:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2014-09-12 13:10:42 -04:00
|
|
|
"net/http/httptest"
|
2014-09-02 10:35:25 -04:00
|
|
|
"os"
|
2014-02-25 11:17:48 -05:00
|
|
|
"os/exec"
|
2015-02-14 01:59:01 -05:00
|
|
|
"path"
|
2014-07-08 16:25:22 -04:00
|
|
|
"reflect"
|
2014-02-25 11:17:48 -05:00
|
|
|
"strings"
|
|
|
|
"syscall"
|
2014-07-29 01:50:16 -04:00
|
|
|
"time"
|
2014-09-06 07:49:40 -04:00
|
|
|
|
2015-03-24 07:25:26 -04:00
|
|
|
"github.com/docker/docker/pkg/stringutils"
|
2014-02-25 11:17:48 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
func getExitCode(err error) (int, error) {
|
|
|
|
exitCode := 0
|
|
|
|
if exiterr, ok := err.(*exec.ExitError); ok {
|
2015-05-09 08:56:10 -04:00
|
|
|
if procExit, ok := exiterr.Sys().(syscall.WaitStatus); ok {
|
2014-02-25 11:17:48 -05:00
|
|
|
return procExit.ExitStatus(), nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return exitCode, fmt.Errorf("failed to get exit code")
|
|
|
|
}
|
|
|
|
|
2014-08-13 10:23:11 -04:00
|
|
|
func processExitCode(err error) (exitCode int) {
|
2014-02-25 11:17:48 -05:00
|
|
|
if err != nil {
|
|
|
|
var exiterr error
|
|
|
|
if exitCode, exiterr = getExitCode(err); exiterr != nil {
|
|
|
|
// TODO: Fix this so we check the error's text.
|
|
|
|
// we've failed to retrieve exit code, so we set it to 127
|
|
|
|
exitCode = 127
|
|
|
|
}
|
|
|
|
}
|
2014-08-13 10:23:11 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-03-10 18:10:00 -04:00
|
|
|
func IsKilled(err error) bool {
|
|
|
|
if exitErr, ok := err.(*exec.ExitError); ok {
|
2015-04-06 10:28:39 -04:00
|
|
|
status, ok := exitErr.Sys().(syscall.WaitStatus)
|
2015-03-10 18:10:00 -04:00
|
|
|
if !ok {
|
|
|
|
return false
|
|
|
|
}
|
2015-04-06 10:28:39 -04:00
|
|
|
// status.ExitStatus() is required on Windows because it does not
|
|
|
|
// implement Signal() nor Signaled(). Just check it had a bad exit
|
|
|
|
// status could mean it was killed (and in tests we do kill)
|
|
|
|
return (status.Signaled() && status.Signal() == os.Kill) || status.ExitStatus() != 0
|
2015-03-10 18:10:00 -04:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2014-08-13 10:23:11 -04:00
|
|
|
func runCommandWithOutput(cmd *exec.Cmd) (output string, exitCode int, err error) {
|
|
|
|
exitCode = 0
|
|
|
|
out, err := cmd.CombinedOutput()
|
|
|
|
exitCode = processExitCode(err)
|
2014-02-25 11:17:48 -05:00
|
|
|
output = string(out)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func runCommandWithStdoutStderr(cmd *exec.Cmd) (stdout string, stderr string, exitCode int, err error) {
|
2014-09-22 10:38:55 -04:00
|
|
|
var (
|
|
|
|
stderrBuffer, stdoutBuffer bytes.Buffer
|
|
|
|
)
|
2014-02-25 11:17:48 -05:00
|
|
|
exitCode = 0
|
2014-09-22 10:38:55 -04:00
|
|
|
cmd.Stderr = &stderrBuffer
|
|
|
|
cmd.Stdout = &stdoutBuffer
|
|
|
|
err = cmd.Run()
|
2014-08-13 10:23:11 -04:00
|
|
|
exitCode = processExitCode(err)
|
2014-02-25 11:17:48 -05:00
|
|
|
|
2014-09-22 10:38:55 -04:00
|
|
|
stdout = stdoutBuffer.String()
|
|
|
|
stderr = stderrBuffer.String()
|
2014-02-25 11:17:48 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-14 04:19:57 -05:00
|
|
|
func runCommandWithOutputForDuration(cmd *exec.Cmd, duration time.Duration) (output string, exitCode int, timedOut bool, err error) {
|
|
|
|
var outputBuffer bytes.Buffer
|
|
|
|
if cmd.Stdout != nil {
|
|
|
|
err = errors.New("cmd.Stdout already set")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
cmd.Stdout = &outputBuffer
|
|
|
|
|
|
|
|
if cmd.Stderr != nil {
|
|
|
|
err = errors.New("cmd.Stderr already set")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
cmd.Stderr = &outputBuffer
|
2014-08-13 12:02:04 -04:00
|
|
|
|
|
|
|
done := make(chan error)
|
|
|
|
go func() {
|
2015-02-14 04:19:57 -05:00
|
|
|
exitErr := cmd.Run()
|
|
|
|
exitCode = processExitCode(exitErr)
|
|
|
|
done <- exitErr
|
2014-08-13 12:02:04 -04:00
|
|
|
}()
|
2015-02-14 04:19:57 -05:00
|
|
|
|
2014-08-13 12:02:04 -04:00
|
|
|
select {
|
2015-02-14 04:19:57 -05:00
|
|
|
case <-time.After(duration):
|
|
|
|
killErr := cmd.Process.Kill()
|
|
|
|
if killErr != nil {
|
|
|
|
fmt.Printf("failed to kill (pid=%d): %v\n", cmd.Process.Pid, killErr)
|
2014-08-13 12:02:04 -04:00
|
|
|
}
|
2015-02-14 04:19:57 -05:00
|
|
|
timedOut = true
|
|
|
|
break
|
|
|
|
case err = <-done:
|
2014-08-13 12:02:04 -04:00
|
|
|
break
|
|
|
|
}
|
2015-02-14 04:19:57 -05:00
|
|
|
output = outputBuffer.String()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var ErrCmdTimeout = fmt.Errorf("command timed out")
|
|
|
|
|
|
|
|
func runCommandWithOutputAndTimeout(cmd *exec.Cmd, timeout time.Duration) (output string, exitCode int, err error) {
|
|
|
|
var timedOut bool
|
|
|
|
output, exitCode, timedOut, err = runCommandWithOutputForDuration(cmd, timeout)
|
|
|
|
if timedOut {
|
|
|
|
err = ErrCmdTimeout
|
|
|
|
}
|
2014-08-13 12:02:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-02-25 11:17:48 -05:00
|
|
|
func runCommand(cmd *exec.Cmd) (exitCode int, err error) {
|
|
|
|
exitCode = 0
|
|
|
|
err = cmd.Run()
|
2014-08-13 10:23:11 -04:00
|
|
|
exitCode = processExitCode(err)
|
2014-02-25 11:17:48 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-14 17:25:13 -05:00
|
|
|
func runCommandPipelineWithOutput(cmds ...*exec.Cmd) (output string, exitCode int, err error) {
|
|
|
|
if len(cmds) < 2 {
|
|
|
|
return "", 0, errors.New("pipeline does not have multiple cmds")
|
|
|
|
}
|
|
|
|
|
|
|
|
// connect stdin of each cmd to stdout pipe of previous cmd
|
|
|
|
for i, cmd := range cmds {
|
|
|
|
if i > 0 {
|
|
|
|
prevCmd := cmds[i-1]
|
|
|
|
cmd.Stdin, err = prevCmd.StdoutPipe()
|
2015-04-15 07:43:15 -04:00
|
|
|
|
2015-02-14 17:25:13 -05:00
|
|
|
if err != nil {
|
|
|
|
return "", 0, fmt.Errorf("cannot set stdout pipe for %s: %v", cmd.Path, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// start all cmds except the last
|
|
|
|
for _, cmd := range cmds[:len(cmds)-1] {
|
|
|
|
if err = cmd.Start(); err != nil {
|
|
|
|
return "", 0, fmt.Errorf("starting %s failed with error: %v", cmd.Path, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
// wait all cmds except the last to release their resources
|
|
|
|
for _, cmd := range cmds[:len(cmds)-1] {
|
|
|
|
cmd.Wait()
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// wait on last cmd
|
|
|
|
return runCommandWithOutput(cmds[len(cmds)-1])
|
|
|
|
}
|
|
|
|
|
2014-07-08 16:25:22 -04:00
|
|
|
func unmarshalJSON(data []byte, result interface{}) error {
|
2015-04-26 12:50:25 -04:00
|
|
|
if err := json.Unmarshal(data, result); err != nil {
|
2014-07-08 16:25:22 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func convertSliceOfStringsToMap(input []string) map[string]struct{} {
|
|
|
|
output := make(map[string]struct{})
|
|
|
|
for _, v := range input {
|
|
|
|
output[v] = struct{}{}
|
|
|
|
}
|
|
|
|
return output
|
|
|
|
}
|
2014-07-29 01:50:16 -04:00
|
|
|
|
2014-10-06 10:26:55 -04:00
|
|
|
func waitForContainer(contID string, args ...string) error {
|
|
|
|
args = append([]string{"run", "--name", contID}, args...)
|
2014-07-29 01:50:16 -04:00
|
|
|
cmd := exec.Command(dockerBinary, args...)
|
|
|
|
if _, err := runCommand(cmd); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-10-06 10:26:55 -04:00
|
|
|
if err := waitRun(contID); err != nil {
|
2014-07-29 01:50:16 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-10-06 10:26:55 -04:00
|
|
|
func waitRun(contID string) error {
|
2015-01-13 18:19:12 -05:00
|
|
|
return waitInspect(contID, "{{.State.Running}}", "true", 5)
|
|
|
|
}
|
|
|
|
|
|
|
|
func waitInspect(name, expr, expected string, timeout int) error {
|
|
|
|
after := time.After(time.Duration(timeout) * time.Second)
|
2014-07-29 01:50:16 -04:00
|
|
|
|
|
|
|
for {
|
2015-01-13 18:19:12 -05:00
|
|
|
cmd := exec.Command(dockerBinary, "inspect", "-f", expr, name)
|
2014-07-29 01:50:16 -04:00
|
|
|
out, _, err := runCommandWithOutput(cmd)
|
|
|
|
if err != nil {
|
2015-04-10 23:16:42 -04:00
|
|
|
if !strings.Contains(out, "No such") {
|
|
|
|
return fmt.Errorf("error executing docker inspect: %v\n%s", err, out)
|
|
|
|
}
|
|
|
|
select {
|
|
|
|
case <-after:
|
|
|
|
return err
|
|
|
|
default:
|
|
|
|
time.Sleep(10 * time.Millisecond)
|
|
|
|
continue
|
|
|
|
}
|
2014-07-29 01:50:16 -04:00
|
|
|
}
|
|
|
|
|
2015-01-13 18:19:12 -05:00
|
|
|
out = strings.TrimSpace(out)
|
|
|
|
if out == expected {
|
2014-07-29 01:50:16 -04:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-after:
|
2015-01-13 18:19:12 -05:00
|
|
|
return fmt.Errorf("condition \"%q == %q\" not true in time", out, expected)
|
2014-07-29 01:50:16 -04:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-09-02 10:35:25 -04:00
|
|
|
|
|
|
|
func compareDirectoryEntries(e1 []os.FileInfo, e2 []os.FileInfo) error {
|
|
|
|
var (
|
|
|
|
e1Entries = make(map[string]struct{})
|
|
|
|
e2Entries = make(map[string]struct{})
|
|
|
|
)
|
|
|
|
for _, e := range e1 {
|
|
|
|
e1Entries[e.Name()] = struct{}{}
|
|
|
|
}
|
|
|
|
for _, e := range e2 {
|
|
|
|
e2Entries[e.Name()] = struct{}{}
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(e1Entries, e2Entries) {
|
|
|
|
return fmt.Errorf("entries differ")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2014-09-06 07:49:40 -04:00
|
|
|
|
|
|
|
func ListTar(f io.Reader) ([]string, error) {
|
|
|
|
tr := tar.NewReader(f)
|
|
|
|
var entries []string
|
|
|
|
|
|
|
|
for {
|
|
|
|
th, err := tr.Next()
|
|
|
|
if err == io.EOF {
|
|
|
|
// end of tar archive
|
|
|
|
return entries, nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return entries, err
|
|
|
|
}
|
|
|
|
entries = append(entries, th.Name)
|
|
|
|
}
|
|
|
|
}
|
2014-09-12 13:10:42 -04:00
|
|
|
|
|
|
|
type FileServer struct {
|
|
|
|
*httptest.Server
|
|
|
|
}
|
|
|
|
|
2015-02-14 01:59:01 -05:00
|
|
|
// randomUnixTmpDirPath provides a temporary unix path with rand string appended.
|
|
|
|
// does not create or checks if it exists.
|
|
|
|
func randomUnixTmpDirPath(s string) string {
|
2015-03-24 07:25:26 -04:00
|
|
|
return path.Join("/tmp", fmt.Sprintf("%s.%s", s, stringutils.GenerateRandomAlphaOnlyString(10)))
|
2015-02-14 01:59:01 -05:00
|
|
|
}
|
|
|
|
|
2014-10-30 15:10:38 -04:00
|
|
|
// Reads chunkSize bytes from reader after every interval.
|
|
|
|
// Returns total read bytes.
|
|
|
|
func consumeWithSpeed(reader io.Reader, chunkSize int, interval time.Duration, stop chan bool) (n int, err error) {
|
2014-10-30 14:52:13 -04:00
|
|
|
buffer := make([]byte, chunkSize)
|
|
|
|
for {
|
2014-10-30 15:10:38 -04:00
|
|
|
select {
|
|
|
|
case <-stop:
|
2014-10-30 14:52:13 -04:00
|
|
|
return
|
2014-10-30 15:10:38 -04:00
|
|
|
default:
|
|
|
|
var readBytes int
|
|
|
|
readBytes, err = reader.Read(buffer)
|
|
|
|
n += readBytes
|
|
|
|
if err != nil {
|
|
|
|
if err == io.EOF {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
time.Sleep(interval)
|
2014-10-30 14:52:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-03-20 18:32:40 -04:00
|
|
|
|
|
|
|
// Parses 'procCgroupData', which is output of '/proc/<pid>/cgroup', and returns
|
|
|
|
// a map which cgroup name as key and path as value.
|
|
|
|
func parseCgroupPaths(procCgroupData string) map[string]string {
|
|
|
|
cgroupPaths := map[string]string{}
|
|
|
|
for _, line := range strings.Split(procCgroupData, "\n") {
|
|
|
|
parts := strings.Split(line, ":")
|
|
|
|
if len(parts) != 3 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
cgroupPaths[parts[1]] = parts[2]
|
|
|
|
}
|
|
|
|
return cgroupPaths
|
|
|
|
}
|
2015-05-26 22:22:03 -04:00
|
|
|
|
|
|
|
type channelBuffer struct {
|
|
|
|
c chan []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelBuffer) Write(b []byte) (int, error) {
|
|
|
|
c.c <- b
|
|
|
|
return len(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelBuffer) Close() error {
|
|
|
|
close(c.c)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *channelBuffer) ReadTimeout(p []byte, n time.Duration) (int, error) {
|
|
|
|
select {
|
|
|
|
case b := <-c.c:
|
|
|
|
return copy(p[0:], b), nil
|
|
|
|
case <-time.After(n):
|
|
|
|
return -1, fmt.Errorf("timeout reading from channel")
|
|
|
|
}
|
|
|
|
}
|