integration-cli/docker_cli_daemon_test.go
006d58d7
 // +build linux
f3ed4228
 
a9971a89
 package main
 
 import (
77c725ea
 	"bufio"
0b209113
 	"bytes"
11cf394e
 	"context"
9acf7c76
 	"encoding/json"
7c225333
 	"fmt"
89859917
 	"io"
2facc046
 	"io/ioutil"
f3f5ff9d
 	"net"
9acf7c76
 	"os"
1262b5f6
 	"os/exec"
2e3186ab
 	"path"
42612ff6
 	"path/filepath"
ba11929e
 	"regexp"
0e254411
 	"strconv"
a9971a89
 	"strings"
19762da6
 	"sync"
dd6d2cd6
 	"time"
06af013f
 
ddd5278b
 	"crypto/tls"
 	"crypto/x509"
 
 	"github.com/cloudflare/cfssl/helpers"
11cf394e
 	"github.com/docker/docker/api"
 	"github.com/docker/docker/api/types"
 	"github.com/docker/docker/client"
ddae20c0
 	moby_daemon "github.com/docker/docker/daemon"
33968e6c
 	"github.com/docker/docker/integration-cli/checker"
50c4475d
 	"github.com/docker/docker/integration-cli/cli"
48de91a3
 	"github.com/docker/docker/integration-cli/daemon"
ddd5278b
 	"github.com/docker/docker/opts"
59b83d8a
 	"github.com/docker/docker/pkg/mount"
dc712b92
 	"github.com/docker/docker/pkg/stringid"
89f03409
 	units "github.com/docker/go-units"
d18919e3
 	"github.com/docker/libnetwork/iptables"
06af013f
 	"github.com/docker/libtrust"
dc944ea7
 	"github.com/go-check/check"
92427b3a
 	"github.com/gotestyourself/gotestyourself/icmd"
89859917
 	"github.com/kr/pty"
069fdc8a
 	"golang.org/x/sys/unix"
a9971a89
 )
 
f87053b9
 // TestLegacyDaemonCommand test starting docker daemon using "deprecated" docker daemon
 // command. Remove this test when we remove this.
 func (s *DockerDaemonSuite) TestLegacyDaemonCommand(c *check.C) {
 	cmd := exec.Command(dockerBinary, "daemon", "--storage-driver=vfs", "--debug")
 	err := cmd.Start()
617f89b9
 	go cmd.Wait()
f87053b9
 	c.Assert(err, checker.IsNil, check.Commentf("could not start daemon using 'docker daemon'"))
 
 	c.Assert(cmd.Process.Kill(), checker.IsNil)
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonRestartWithRunningContainersPorts(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
a9971a89
 
50c4475d
 	cli.Docker(
eeaa6c96
 		cli.Args("run", "-d", "--name", "top1", "-p", "1234:80", "--restart", "always", "busybox:latest", "top"),
50c4475d
 		cli.Daemon(s.d),
 	).Assert(c, icmd.Success)
 
 	cli.Docker(
eeaa6c96
 		cli.Args("run", "-d", "--name", "top2", "-p", "80", "busybox:latest", "top"),
50c4475d
 		cli.Daemon(s.d),
 	).Assert(c, icmd.Success)
a9971a89
 
 	testRun := func(m map[string]bool, prefix string) {
 		var format string
dc944ea7
 		for cont, shouldRun := range m {
eeaa6c96
 			out := cli.Docker(cli.Args("ps"), cli.Daemon(s.d)).Assert(c, icmd.Success).Combined()
a9971a89
 			if shouldRun {
 				format = "%scontainer %q is not running"
 			} else {
 				format = "%scontainer %q is running"
 			}
dc944ea7
 			if shouldRun != strings.Contains(out, cont) {
 				c.Fatalf(format, prefix, cont)
a9971a89
 			}
 		}
 	}
 
 	testRun(map[string]bool{"top1": true, "top2": true}, "")
 
c502fb49
 	s.d.Restart(c)
a9971a89
 	testRun(map[string]bool{"top1": true, "top2": false}, "After daemon restart: ")
 }
9acf7c76
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonRestartWithVolumesRefs(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
9acf7c76
 
e4468913
 	if out, err := s.d.Cmd("run", "--name", "volrestarttest1", "-v", "/foo", "busybox"); err != nil {
dc944ea7
 		c.Fatal(err, out)
9acf7c76
 	}
1c3cb2d3
 
c502fb49
 	s.d.Restart(c)
b3b7eb27
 
db3576f8
 	if out, err := s.d.Cmd("run", "-d", "--volumes-from", "volrestarttest1", "--name", "volrestarttest2", "busybox", "top"); err != nil {
 		c.Fatal(err, out)
9acf7c76
 	}
1c3cb2d3
 
57464c32
 	if out, err := s.d.Cmd("rm", "-fv", "volrestarttest2"); err != nil {
dc944ea7
 		c.Fatal(err, out)
9acf7c76
 	}
1c3cb2d3
 
 	out, err := s.d.Cmd("inspect", "-f", "{{json .Mounts}}", "volrestarttest1")
 	c.Assert(err, check.IsNil)
 
 	if _, err := inspectMountPointJSON(out, "/foo"); err != nil {
 		c.Fatalf("Expected volume to exist: /foo, error: %v\n", err)
9acf7c76
 	}
 }
3893e220
 
10305dc5
 // #11008
 func (s *DockerDaemonSuite) TestDaemonRestartUnlessStopped(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
10305dc5
 
 	out, err := s.d.Cmd("run", "-d", "--name", "top1", "--restart", "always", "busybox:latest", "top")
 	c.Assert(err, check.IsNil, check.Commentf("run top1: %v", out))
 
 	out, err = s.d.Cmd("run", "-d", "--name", "top2", "--restart", "unless-stopped", "busybox:latest", "top")
 	c.Assert(err, check.IsNil, check.Commentf("run top2: %v", out))
 
 	testRun := func(m map[string]bool, prefix string) {
 		var format string
 		for name, shouldRun := range m {
 			out, err := s.d.Cmd("ps")
 			c.Assert(err, check.IsNil, check.Commentf("run ps: %v", out))
 			if shouldRun {
 				format = "%scontainer %q is not running"
 			} else {
 				format = "%scontainer %q is running"
 			}
 			c.Assert(strings.Contains(out, name), check.Equals, shouldRun, check.Commentf(format, prefix, name))
 		}
 	}
 
 	// both running
 	testRun(map[string]bool{"top1": true, "top2": true}, "")
 
 	out, err = s.d.Cmd("stop", "top1")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("stop", "top2")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	// both stopped
 	testRun(map[string]bool{"top1": false, "top2": false}, "")
 
c502fb49
 	s.d.Restart(c)
10305dc5
 
 	// restart=always running
 	testRun(map[string]bool{"top1": true, "top2": false}, "After daemon restart: ")
 
 	out, err = s.d.Cmd("start", "top2")
 	c.Assert(err, check.IsNil, check.Commentf("start top2: %v", out))
 
c502fb49
 	s.d.Restart(c)
10305dc5
 
 	// both running
 	testRun(map[string]bool{"top1": true, "top2": true}, "After second daemon restart: ")
 
 }
 
51e42e6e
 func (s *DockerDaemonSuite) TestDaemonRestartOnFailure(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
51e42e6e
 
 	out, err := s.d.Cmd("run", "-d", "--name", "test1", "--restart", "on-failure:3", "busybox:latest", "false")
 	c.Assert(err, check.IsNil, check.Commentf("run top1: %v", out))
 
 	// wait test1 to stop
48de91a3
 	hostArgs := []string{"--host", s.d.Sock()}
51e42e6e
 	err = waitInspectWithArgs("test1", "{{.State.Running}} {{.State.Restarting}}", "false false", 10*time.Second, hostArgs...)
 	c.Assert(err, checker.IsNil, check.Commentf("test1 should exit but not"))
 
 	// record last start time
 	out, err = s.d.Cmd("inspect", "-f={{.State.StartedAt}}", "test1")
 	c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
 	lastStartTime := out
 
c502fb49
 	s.d.Restart(c)
51e42e6e
 
 	// test1 shouldn't restart at all
 	err = waitInspectWithArgs("test1", "{{.State.Running}} {{.State.Restarting}}", "false false", 0, hostArgs...)
 	c.Assert(err, checker.IsNil, check.Commentf("test1 should exit but not"))
 
 	// make sure test1 isn't restarted when daemon restart
 	// if "StartAt" time updates, means test1 was once restarted.
 	out, err = s.d.Cmd("inspect", "-f={{.State.StartedAt}}", "test1")
 	c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
 	c.Assert(out, checker.Equals, lastStartTime, check.Commentf("test1 shouldn't start after daemon restarts"))
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonStartIptablesFalse(c *check.C) {
c502fb49
 	s.d.Start(c, "--iptables=false")
3893e220
 }
1262b5f6
 
07184599
 // Make sure we cannot shrink base device at daemon restart.
 func (s *DockerDaemonSuite) TestDaemonRestartWithInvalidBasesize(c *check.C) {
 	testRequires(c, Devicemapper)
c502fb49
 	s.d.Start(c)
07184599
 
e885af2a
 	oldBasesizeBytes := getBaseDeviceSize(c, s.d)
07184599
 	var newBasesizeBytes int64 = 1073741824 //1GB in bytes
 
 	if newBasesizeBytes < oldBasesizeBytes {
c502fb49
 		err := s.d.RestartWithError("--storage-opt", fmt.Sprintf("dm.basesize=%d", newBasesizeBytes))
1d74b4f6
 		c.Assert(err, check.NotNil, check.Commentf("daemon should not have started as new base device size is less than existing base device size: %v", err))
 		// 'err != nil' is expected behaviour, no new daemon started,
 		// so no need to stop daemon.
 		if err != nil {
 			return
 		}
07184599
 	}
c502fb49
 	s.d.Stop(c)
07184599
 }
 
 // Make sure we can grow base device at daemon restart.
 func (s *DockerDaemonSuite) TestDaemonRestartWithIncreasedBasesize(c *check.C) {
 	testRequires(c, Devicemapper)
c502fb49
 	s.d.Start(c)
07184599
 
e885af2a
 	oldBasesizeBytes := getBaseDeviceSize(c, s.d)
07184599
 
 	var newBasesizeBytes int64 = 53687091200 //50GB in bytes
 
 	if newBasesizeBytes < oldBasesizeBytes {
 		c.Skip(fmt.Sprintf("New base device size (%v) must be greater than (%s)", units.HumanSize(float64(newBasesizeBytes)), units.HumanSize(float64(oldBasesizeBytes))))
 	}
 
c502fb49
 	err := s.d.RestartWithError("--storage-opt", fmt.Sprintf("dm.basesize=%d", newBasesizeBytes))
07184599
 	c.Assert(err, check.IsNil, check.Commentf("we should have been able to start the daemon with increased base device size: %v", err))
 
e885af2a
 	basesizeAfterRestart := getBaseDeviceSize(c, s.d)
07184599
 	newBasesize, err := convertBasesize(newBasesizeBytes)
 	c.Assert(err, check.IsNil, check.Commentf("Error in converting base device size: %v", err))
 	c.Assert(newBasesize, check.Equals, basesizeAfterRestart, check.Commentf("Basesize passed is not equal to Basesize set"))
c502fb49
 	s.d.Stop(c)
07184599
 }
 
e885af2a
 func getBaseDeviceSize(c *check.C, d *daemon.Daemon) int64 {
 	info := d.Info(c)
 	for _, statusLine := range info.DriverStatus {
 		key, value := statusLine[0], statusLine[1]
 		if key == "Base Device Size" {
 			return parseDeviceSize(c, value)
 		}
 	}
 	c.Fatal("failed to parse Base Device Size from info")
 	return int64(0)
 }
 
 func parseDeviceSize(c *check.C, raw string) int64 {
 	size, err := units.RAMInBytes(strings.TrimSpace(raw))
 	c.Assert(err, check.IsNil)
 	return size
 }
 
b2320d12
 func convertBasesize(basesizeBytes int64) (int64, error) {
 	basesize := units.HumanSize(float64(basesizeBytes))
 	basesize = strings.Trim(basesize, " ")[:len(basesize)-3]
 	basesizeFloat, err := strconv.ParseFloat(strings.Trim(basesize, " "), 64)
 	if err != nil {
 		return 0, err
 	}
 	return int64(basesizeFloat) * 1024 * 1024 * 1024, nil
 }
07184599
 
1262b5f6
 // Issue #8444: If docker0 bridge is modified (intentionally or unintentionally) and
 // no longer has an IP associated, we should gracefully handle that case and associate
 // an IP with it rather than fail daemon start
57464c32
 func (s *DockerDaemonSuite) TestDaemonStartBridgeWithoutIPAssociation(c *check.C) {
1262b5f6
 	// rather than depending on brctl commands to verify docker0 is created and up
 	// let's start the daemon and stop it, and then make a modification to run the
 	// actual test
c502fb49
 	s.d.Start(c)
 	s.d.Stop(c)
1262b5f6
 
 	// now we will remove the ip from docker0 and then try starting the daemon
def13fa2
 	icmd.RunCommand("ip", "addr", "flush", "dev", "docker0").Assert(c, icmd.Success)
1262b5f6
 
c502fb49
 	if err := s.d.StartWithError(); err != nil {
1262b5f6
 		warning := "**WARNING: Docker bridge network in bad state--delete docker0 bridge interface to fix"
dc944ea7
 		c.Fatalf("Could not start daemon when docker0 has no IP address: %v\n%s", err, warning)
1262b5f6
 	}
 }
d98b1179
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonIptablesClean(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
d98b1179
 
57464c32
 	if out, err := s.d.Cmd("run", "-d", "--name", "top", "-p", "80", "busybox:latest", "top"); err != nil {
dc944ea7
 		c.Fatalf("Could not run top: %s, %v", out, err)
d98b1179
 	}
 
 	ipTablesSearchString := "tcp dpt:80"
 
87e3fcfe
 	// get output from iptables with container running
 	verifyIPTablesContains(c, ipTablesSearchString)
d98b1179
 
c502fb49
 	s.d.Stop(c)
d98b1179
 
 	// get output from iptables after restart
87e3fcfe
 	verifyIPTablesDoesNotContains(c, ipTablesSearchString)
d98b1179
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonIptablesCreate(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
d98b1179
 
57464c32
 	if out, err := s.d.Cmd("run", "-d", "--name", "top", "--restart=always", "-p", "80", "busybox:latest", "top"); err != nil {
dc944ea7
 		c.Fatalf("Could not run top: %s, %v", out, err)
d98b1179
 	}
 
 	// get output from iptables with container running
 	ipTablesSearchString := "tcp dpt:80"
87e3fcfe
 	verifyIPTablesContains(c, ipTablesSearchString)
d98b1179
 
c502fb49
 	s.d.Restart(c)
d98b1179
 
 	// make sure the container is not running
fab2a3dc
 	runningOut, err := s.d.Cmd("inspect", "--format={{.State.Running}}", "top")
d98b1179
 	if err != nil {
87e3fcfe
 		c.Fatalf("Could not inspect on container: %s, %v", runningOut, err)
d98b1179
 	}
 	if strings.TrimSpace(runningOut) != "true" {
dc944ea7
 		c.Fatalf("Container should have been restarted after daemon restart. Status running should have been true but was: %q", strings.TrimSpace(runningOut))
d98b1179
 	}
 
 	// get output from iptables after restart
87e3fcfe
 	verifyIPTablesContains(c, ipTablesSearchString)
 }
 
 func verifyIPTablesContains(c *check.C, ipTablesSearchString string) {
 	result := icmd.RunCommand("iptables", "-nvL")
 	result.Assert(c, icmd.Success)
 	if !strings.Contains(result.Combined(), ipTablesSearchString) {
 		c.Fatalf("iptables output should have contained %q, but was %q", ipTablesSearchString, result.Combined())
d98b1179
 	}
87e3fcfe
 }
d98b1179
 
87e3fcfe
 func verifyIPTablesDoesNotContains(c *check.C, ipTablesSearchString string) {
 	result := icmd.RunCommand("iptables", "-nvL")
 	result.Assert(c, icmd.Success)
 	if strings.Contains(result.Combined(), ipTablesSearchString) {
 		c.Fatalf("iptables output should not have contained %q, but was %q", ipTablesSearchString, result.Combined())
d98b1179
 	}
 }
2facc046
 
2dfb7f3b
 // TestDaemonIPv6Enabled checks that when the daemon is started with --ipv6=true that the docker0 bridge
 // has the fe80::1 address and that a container is assigned a link-local address
5c0fd2d0
 func (s *DockerDaemonSuite) TestDaemonIPv6Enabled(c *check.C) {
2dfb7f3b
 	testRequires(c, IPv6)
 
6e7405eb
 	setupV6(c)
 	defer teardownV6(c)
2dfb7f3b
 
c502fb49
 	s.d.StartWithBusybox(c, "--ipv6")
2dfb7f3b
 
 	iface, err := net.InterfaceByName("docker0")
 	if err != nil {
 		c.Fatalf("Error getting docker0 interface: %v", err)
 	}
 
 	addrs, err := iface.Addrs()
 	if err != nil {
 		c.Fatalf("Error getting addresses for docker0 interface: %v", err)
 	}
 
 	var found bool
 	expected := "fe80::1/64"
 
 	for i := range addrs {
 		if addrs[i].String() == expected {
 			found = true
8928677e
 			break
2dfb7f3b
 		}
 	}
 
 	if !found {
 		c.Fatalf("Bridge does not have an IPv6 Address")
 	}
 
5c0fd2d0
 	if out, err := s.d.Cmd("run", "-itd", "--name=ipv6test", "busybox:latest"); err != nil {
2dfb7f3b
 		c.Fatalf("Could not run container: %s, %v", out, err)
 	}
 
5c0fd2d0
 	out, err := s.d.Cmd("inspect", "--format", "'{{.NetworkSettings.Networks.bridge.LinkLocalIPv6Address}}'", "ipv6test")
2dfb7f3b
 	out = strings.Trim(out, " \r\n'")
 
 	if err != nil {
 		c.Fatalf("Error inspecting container: %s, %v", out, err)
 	}
 
 	if ip := net.ParseIP(out); ip == nil {
 		c.Fatalf("Container should have a link-local IPv6 address")
 	}
 
5c0fd2d0
 	out, err = s.d.Cmd("inspect", "--format", "'{{.NetworkSettings.Networks.bridge.GlobalIPv6Address}}'", "ipv6test")
2dfb7f3b
 	out = strings.Trim(out, " \r\n'")
 
 	if err != nil {
 		c.Fatalf("Error inspecting container: %s, %v", out, err)
 	}
 
 	if ip := net.ParseIP(out); ip != nil {
 		c.Fatalf("Container should not have a global IPv6 address: %v", out)
 	}
 }
 
 // TestDaemonIPv6FixedCIDR checks that when the daemon is started with --ipv6=true and a fixed CIDR
 // that running containers are given a link-local and global IPv6 address
73849a5c
 func (s *DockerDaemonSuite) TestDaemonIPv6FixedCIDR(c *check.C) {
a943c401
 	// IPv6 setup is messing with local bridge address.
 	testRequires(c, SameHostDaemon)
d5e8d8e1
 	// Delete the docker0 bridge if its left around from previous daemon. It has to be recreated with
 	// ipv6 enabled
 	deleteInterface(c, "docker0")
2dfb7f3b
 
c502fb49
 	s.d.StartWithBusybox(c, "--ipv6", "--fixed-cidr-v6=2001:db8:2::/64", "--default-gateway-v6=2001:db8:2::100")
2dfb7f3b
 
73849a5c
 	out, err := s.d.Cmd("run", "-itd", "--name=ipv6test", "busybox:latest")
 	c.Assert(err, checker.IsNil, check.Commentf("Could not run container: %s, %v", out, err))
2dfb7f3b
 
6e7405eb
 	out, err = s.d.Cmd("inspect", "--format", "{{.NetworkSettings.Networks.bridge.GlobalIPv6Address}}", "ipv6test")
2dfb7f3b
 	out = strings.Trim(out, " \r\n'")
 
73849a5c
 	c.Assert(err, checker.IsNil, check.Commentf(out))
2dfb7f3b
 
73849a5c
 	ip := net.ParseIP(out)
 	c.Assert(ip, checker.NotNil, check.Commentf("Container should have a global IPv6 address"))
aa97eee1
 
6e7405eb
 	out, err = s.d.Cmd("inspect", "--format", "{{.NetworkSettings.Networks.bridge.IPv6Gateway}}", "ipv6test")
73849a5c
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 
 	c.Assert(strings.Trim(out, " \r\n'"), checker.Equals, "2001:db8:2::100", check.Commentf("Container should have a global IPv6 gateway"))
2dfb7f3b
 }
 
095a8ac5
 // TestDaemonIPv6FixedCIDRAndMac checks that when the daemon is started with ipv6 fixed CIDR
c1be45fa
 // the running containers are given an IPv6 address derived from the MAC address and the ipv6 fixed CIDR
73849a5c
 func (s *DockerDaemonSuite) TestDaemonIPv6FixedCIDRAndMac(c *check.C) {
a943c401
 	// IPv6 setup is messing with local bridge address.
 	testRequires(c, SameHostDaemon)
d5e8d8e1
 	// Delete the docker0 bridge if its left around from previous daemon. It has to be recreated with
 	// ipv6 enabled
 	deleteInterface(c, "docker0")
095a8ac5
 
c502fb49
 	s.d.StartWithBusybox(c, "--ipv6", "--fixed-cidr-v6=2001:db8:1::/64")
095a8ac5
 
73849a5c
 	out, err := s.d.Cmd("run", "-itd", "--name=ipv6test", "--mac-address", "AA:BB:CC:DD:EE:FF", "busybox")
095a8ac5
 	c.Assert(err, checker.IsNil)
 
6e7405eb
 	out, err = s.d.Cmd("inspect", "--format", "{{.NetworkSettings.Networks.bridge.GlobalIPv6Address}}", "ipv6test")
095a8ac5
 	c.Assert(err, checker.IsNil)
 	c.Assert(strings.Trim(out, " \r\n'"), checker.Equals, "2001:db8:1::aabb:ccdd:eeff")
 }
 
010e5a22
 // TestDaemonIPv6HostMode checks that when the running a container with
 // network=host the host ipv6 addresses are not removed
 func (s *DockerDaemonSuite) TestDaemonIPv6HostMode(c *check.C) {
 	testRequires(c, SameHostDaemon)
 	deleteInterface(c, "docker0")
 
 	s.d.StartWithBusybox(c, "--ipv6", "--fixed-cidr-v6=2001:db8:2::/64")
 	out, err := s.d.Cmd("run", "-itd", "--name=hostcnt", "--network=host", "busybox:latest")
 	c.Assert(err, checker.IsNil, check.Commentf("Could not run container: %s, %v", out, err))
 
 	out, err = s.d.Cmd("exec", "hostcnt", "ip", "-6", "addr", "show", "docker0")
63a0e88e
 	c.Assert(err, checker.IsNil)
 	c.Assert(strings.Trim(out, " \r\n'"), checker.Contains, "2001:db8:2::1")
010e5a22
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLogLevelWrong(c *check.C) {
c502fb49
 	c.Assert(s.d.StartWithError("--log-level=bogus"), check.NotNil, check.Commentf("Daemon shouldn't start with wrong log level"))
57464c32
 }
2facc046
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLogLevelDebug(c *check.C) {
c502fb49
 	s.d.Start(c, "--log-level=debug")
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
89e2e5fc
 	if !strings.Contains(string(content), `level=debug`) {
dc944ea7
 		c.Fatalf(`Missing level="debug" in log file:\n%s`, string(content))
2facc046
 	}
57464c32
 }
2facc046
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLogLevelFatal(c *check.C) {
 	// we creating new daemons to create new logFile
c502fb49
 	s.d.Start(c, "--log-level=fatal")
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
89e2e5fc
 	if strings.Contains(string(content), `level=debug`) {
dc944ea7
 		c.Fatalf(`Should not have level="debug" in log file:\n%s`, string(content))
2facc046
 	}
57464c32
 }
2facc046
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonFlagD(c *check.C) {
c502fb49
 	s.d.Start(c, "-D")
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
a85ca8b7
 	if !strings.Contains(string(content), `level=debug`) {
 		c.Fatalf(`Should have level="debug" in log file using -D:\n%s`, string(content))
2facc046
 	}
57464c32
 }
2facc046
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonFlagDebug(c *check.C) {
c502fb49
 	s.d.Start(c, "--debug")
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
a85ca8b7
 	if !strings.Contains(string(content), `level=debug`) {
 		c.Fatalf(`Should have level="debug" in log file using --debug:\n%s`, string(content))
2facc046
 	}
57464c32
 }
2facc046
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonFlagDebugLogLevelFatal(c *check.C) {
c502fb49
 	s.d.Start(c, "--debug", "--log-level=fatal")
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
a85ca8b7
 	if !strings.Contains(string(content), `level=debug`) {
 		c.Fatalf(`Should have level="debug" in log file when using both --debug and --log-level=fatal:\n%s`, string(content))
2facc046
 	}
 }
7c225333
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonAllocatesListeningPort(c *check.C) {
7c225333
 	listeningPorts := [][]string{
 		{"0.0.0.0", "0.0.0.0", "5678"},
 		{"127.0.0.1", "127.0.0.1", "1234"},
 		{"localhost", "127.0.0.1", "1235"},
 	}
 
e7fc6321
 	cmdArgs := make([]string, 0, len(listeningPorts)*2)
7c225333
 	for _, hostDirective := range listeningPorts {
 		cmdArgs = append(cmdArgs, "--host", fmt.Sprintf("tcp://%s:%s", hostDirective[0], hostDirective[2]))
 	}
 
c502fb49
 	s.d.StartWithBusybox(c, cmdArgs...)
7c225333
 
 	for _, hostDirective := range listeningPorts {
57464c32
 		output, err := s.d.Cmd("run", "-p", fmt.Sprintf("%s:%s:80", hostDirective[1], hostDirective[2]), "busybox", "true")
7c225333
 		if err == nil {
dc944ea7
 			c.Fatalf("Container should not start, expected port already allocated error: %q", output)
7c225333
 		} else if !strings.Contains(output, "port is already allocated") {
dc944ea7
 			c.Fatalf("Expected port is already allocated error: %q", output)
7c225333
 		}
 	}
 }
e744b0dc
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonKeyGeneration(c *check.C) {
a34a7930
 	// TODO: skip or update for Windows daemon
06af013f
 	os.Remove("/etc/docker/key.json")
c502fb49
 	s.d.Start(c)
 	s.d.Stop(c)
06af013f
 
 	k, err := libtrust.LoadKeyFile("/etc/docker/key.json")
 	if err != nil {
dc944ea7
 		c.Fatalf("Error opening key file")
06af013f
 	}
 	kid := k.KeyID()
 	// Test Key ID is a valid fingerprint (e.g. QQXN:JY5W:TBXI:MK3X:GX6P:PD5D:F56N:NHCS:LVRZ:JA46:R24J:XEFF)
 	if len(kid) != 59 {
dc944ea7
 		c.Fatalf("Bad key ID: %s", kid)
06af013f
 	}
 }
42612ff6
 
459e58ff
 // GH#11320 - verify that the daemon exits on failure properly
 // Note that this explicitly tests the conflict of {-b,--bridge} and {--bip} options as the means
 // to get a daemon init failure; no other tests for -b/--bip conflict are therefore required
57464c32
 func (s *DockerDaemonSuite) TestDaemonExitOnFailure(c *check.C) {
459e58ff
 	//attempt to start daemon with incorrect flags (we know -b and --bip conflict)
c502fb49
 	if err := s.d.StartWithError("--bridge", "nosuchbridge", "--bip", "1.1.1.1"); err != nil {
459e58ff
 		//verify we got the right error
0f217cea
 		if !strings.Contains(err.Error(), "Daemon exited") {
dc944ea7
 			c.Fatalf("Expected daemon not to start, got %v", err)
459e58ff
 		}
 		// look in the log and make sure we got the message that daemon is shutting down
87e3fcfe
 		icmd.RunCommand("grep", "Error starting daemon", s.d.LogFileName()).Assert(c, icmd.Success)
459e58ff
 	} else {
 		//if we didn't get an error and the daemon is running, this is a failure
dc944ea7
 		c.Fatal("Conflicting options should cause the daemon to error out with a failure")
459e58ff
 	}
 }
 
f3f5ff9d
 func (s *DockerDaemonSuite) TestDaemonBridgeExternal(c *check.C) {
 	d := s.d
c502fb49
 	err := d.StartWithError("--bridge", "nosuchbridge")
dd0666e6
 	c.Assert(err, check.NotNil, check.Commentf("--bridge option with an invalid bridge should cause the daemon to fail"))
c502fb49
 	defer d.Restart(c)
f3f5ff9d
 
 	bridgeName := "external-bridge"
6b3c9281
 	bridgeIP := "192.169.1.1/24"
 	_, bridgeIPNet, _ := net.ParseCIDR(bridgeIP)
f3f5ff9d
 
87e3fcfe
 	createInterface(c, "bridge", bridgeName, bridgeIP)
1c073ec1
 	defer deleteInterface(c, bridgeName)
f3f5ff9d
 
c502fb49
 	d.StartWithBusybox(c, "--bridge", bridgeName)
f3f5ff9d
 
 	ipTablesSearchString := bridgeIPNet.String()
87e3fcfe
 	icmd.RunCommand("iptables", "-t", "nat", "-nvL").Assert(c, icmd.Expected{
 		Out: ipTablesSearchString,
 	})
f3f5ff9d
 
 	_, err = d.Cmd("run", "-d", "--name", "ExtContainer", "busybox", "top")
 	c.Assert(err, check.IsNil)
 
f4a34a1f
 	containerIP, err := d.FindContainerIP("ExtContainer")
 	c.Assert(err, checker.IsNil)
6b3c9281
 	ip := net.ParseIP(containerIP)
f3f5ff9d
 	c.Assert(bridgeIPNet.Contains(ip), check.Equals, true,
 		check.Commentf("Container IP-Address must be in the same subnet range : %s",
6b3c9281
 			containerIP))
f3f5ff9d
 }
 
a0af884d
 func (s *DockerDaemonSuite) TestDaemonBridgeNone(c *check.C) {
 	// start with bridge none
 	d := s.d
c502fb49
 	d.StartWithBusybox(c, "--bridge", "none")
 	defer d.Restart(c)
a0af884d
 
 	// verify docker0 iface is not there
87e3fcfe
 	icmd.RunCommand("ifconfig", "docker0").Assert(c, icmd.Expected{
 		ExitCode: 1,
 		Error:    "exit status 1",
 		Err:      "Device not found",
 	})
a0af884d
 
 	// verify default "bridge" network is not there
87e3fcfe
 	out, err := d.Cmd("network", "inspect", "bridge")
a0af884d
 	c.Assert(err, check.NotNil, check.Commentf("\"bridge\" network should not be present if daemon started with --bridge=none"))
 	c.Assert(strings.Contains(out, "No such network"), check.Equals, true)
 }
 
87e3fcfe
 func createInterface(c *check.C, ifType string, ifName string, ipNet string) {
 	icmd.RunCommand("ip", "link", "add", "name", ifName, "type", ifType).Assert(c, icmd.Success)
 	icmd.RunCommand("ifconfig", ifName, ipNet, "up").Assert(c, icmd.Success)
dd0666e6
 }
 
1c073ec1
 func deleteInterface(c *check.C, ifName string) {
87e3fcfe
 	icmd.RunCommand("ip", "link", "delete", ifName).Assert(c, icmd.Success)
 	icmd.RunCommand("iptables", "-t", "nat", "--flush").Assert(c, icmd.Success)
 	icmd.RunCommand("iptables", "--flush").Assert(c, icmd.Success)
9c325c3f
 }
 
 func (s *DockerDaemonSuite) TestDaemonBridgeIP(c *check.C) {
 	// TestDaemonBridgeIP Steps
 	// 1. Delete the existing docker0 Bridge
 	// 2. Set --bip daemon configuration and start the new Docker Daemon
 	// 3. Check if the bip config has taken effect using ifconfig and iptables commands
 	// 4. Launch a Container and make sure the IP-Address is in the expected subnet
 	// 5. Delete the docker0 Bridge
51462327
 	// 6. Restart the Docker Daemon (via deferred action)
9c325c3f
 	//    This Restart takes care of bringing docker0 interface back to auto-assigned IP
 
 	defaultNetworkBridge := "docker0"
ba11929e
 	deleteInterface(c, defaultNetworkBridge)
9c325c3f
 
 	d := s.d
 
6b3c9281
 	bridgeIP := "192.169.1.1/24"
 	ip, bridgeIPNet, _ := net.ParseCIDR(bridgeIP)
9c325c3f
 
c502fb49
 	d.StartWithBusybox(c, "--bip", bridgeIP)
 	defer d.Restart(c)
9c325c3f
 
 	ifconfigSearchString := ip.String()
def13fa2
 	icmd.RunCommand("ifconfig", defaultNetworkBridge).Assert(c, icmd.Expected{
 		Out: ifconfigSearchString,
 	})
9c325c3f
 
 	ipTablesSearchString := bridgeIPNet.String()
def13fa2
 	icmd.RunCommand("iptables", "-t", "nat", "-nvL").Assert(c, icmd.Expected{
 		Out: ipTablesSearchString,
 	})
9c325c3f
 
def13fa2
 	_, err := d.Cmd("run", "-d", "--name", "test", "busybox", "top")
9c325c3f
 	c.Assert(err, check.IsNil)
 
f4a34a1f
 	containerIP, err := d.FindContainerIP("test")
 	c.Assert(err, checker.IsNil)
6b3c9281
 	ip = net.ParseIP(containerIP)
9c325c3f
 	c.Assert(bridgeIPNet.Contains(ip), check.Equals, true,
 		check.Commentf("Container IP-Address must be in the same subnet range : %s",
6b3c9281
 			containerIP))
ba11929e
 	deleteInterface(c, defaultNetworkBridge)
9c325c3f
 }
 
3ab7ceb5
 func (s *DockerDaemonSuite) TestDaemonRestartWithBridgeIPChange(c *check.C) {
c502fb49
 	s.d.Start(c)
 	defer s.d.Restart(c)
 	s.d.Stop(c)
3ab7ceb5
 
 	// now we will change the docker0's IP and then try starting the daemon
 	bridgeIP := "192.169.100.1/24"
 	_, bridgeIPNet, _ := net.ParseCIDR(bridgeIP)
 
def13fa2
 	icmd.RunCommand("ifconfig", "docker0", bridgeIP).Assert(c, icmd.Success)
3ab7ceb5
 
c502fb49
 	s.d.Start(c, "--bip", bridgeIP)
3ab7ceb5
 
 	//check if the iptables contains new bridgeIP MASQUERADE rule
 	ipTablesSearchString := bridgeIPNet.String()
def13fa2
 	icmd.RunCommand("iptables", "-t", "nat", "-nvL").Assert(c, icmd.Expected{
 		Out: ipTablesSearchString,
 	})
3ab7ceb5
 }
 
0e254411
 func (s *DockerDaemonSuite) TestDaemonBridgeFixedCidr(c *check.C) {
 	d := s.d
 
 	bridgeName := "external-bridge"
6b3c9281
 	bridgeIP := "192.169.1.1/24"
0e254411
 
87e3fcfe
 	createInterface(c, "bridge", bridgeName, bridgeIP)
1c073ec1
 	defer deleteInterface(c, bridgeName)
0e254411
 
dd0666e6
 	args := []string{"--bridge", bridgeName, "--fixed-cidr", "192.169.1.0/30"}
c502fb49
 	d.StartWithBusybox(c, args...)
 	defer d.Restart(c)
0e254411
 
 	for i := 0; i < 4; i++ {
 		cName := "Container" + strconv.Itoa(i)
 		out, err := d.Cmd("run", "-d", "--name", cName, "busybox", "top")
 		if err != nil {
0f351ce3
 			c.Assert(strings.Contains(out, "no available IPv4 addresses"), check.Equals, true,
0e254411
 				check.Commentf("Could not run a Container : %s %s", err.Error(), out))
 		}
 	}
ba11929e
 }
 
c7cd6596
 func (s *DockerDaemonSuite) TestDaemonBridgeFixedCidr2(c *check.C) {
 	d := s.d
 
 	bridgeName := "external-bridge"
 	bridgeIP := "10.2.2.1/16"
 
87e3fcfe
 	createInterface(c, "bridge", bridgeName, bridgeIP)
c7cd6596
 	defer deleteInterface(c, bridgeName)
 
c502fb49
 	d.StartWithBusybox(c, "--bip", bridgeIP, "--fixed-cidr", "10.2.2.0/24")
 	defer s.d.Restart(c)
c7cd6596
 
87e3fcfe
 	out, err := d.Cmd("run", "-d", "--name", "bb", "busybox", "top")
c7cd6596
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 	defer d.Cmd("stop", "bb")
 
 	out, err = d.Cmd("exec", "bb", "/bin/sh", "-c", "ifconfig eth0 | awk '/inet addr/{print substr($2,6)}'")
 	c.Assert(out, checker.Equals, "10.2.2.0\n")
 
 	out, err = d.Cmd("run", "--rm", "busybox", "/bin/sh", "-c", "ifconfig eth0 | awk '/inet addr/{print substr($2,6)}'")
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 	c.Assert(out, checker.Equals, "10.2.2.2\n")
 }
 
 func (s *DockerDaemonSuite) TestDaemonBridgeFixedCIDREqualBridgeNetwork(c *check.C) {
5b538393
 	d := s.d
 
 	bridgeName := "external-bridge"
 	bridgeIP := "172.27.42.1/16"
 
87e3fcfe
 	createInterface(c, "bridge", bridgeName, bridgeIP)
5b538393
 	defer deleteInterface(c, bridgeName)
 
c502fb49
 	d.StartWithBusybox(c, "--bridge", bridgeName, "--fixed-cidr", bridgeIP)
 	defer s.d.Restart(c)
5b538393
 
87e3fcfe
 	out, err := d.Cmd("run", "-d", "busybox", "top")
5b538393
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	cid1 := strings.TrimSpace(out)
 	defer d.Cmd("stop", cid1)
 }
 
5fa60149
 func (s *DockerDaemonSuite) TestDaemonDefaultGatewayIPv4Implicit(c *check.C) {
 	defaultNetworkBridge := "docker0"
 	deleteInterface(c, defaultNetworkBridge)
 
 	d := s.d
 
6b3c9281
 	bridgeIP := "192.169.1.1"
 	bridgeIPNet := fmt.Sprintf("%s/24", bridgeIP)
5fa60149
 
c502fb49
 	d.StartWithBusybox(c, "--bip", bridgeIPNet)
 	defer d.Restart(c)
5fa60149
 
6b3c9281
 	expectedMessage := fmt.Sprintf("default via %s dev", bridgeIP)
5fa60149
 	out, err := d.Cmd("run", "busybox", "ip", "-4", "route", "list", "0/0")
c502fb49
 	c.Assert(err, checker.IsNil)
5fa60149
 	c.Assert(strings.Contains(out, expectedMessage), check.Equals, true,
 		check.Commentf("Implicit default gateway should be bridge IP %s, but default route was '%s'",
6b3c9281
 			bridgeIP, strings.TrimSpace(out)))
5fa60149
 	deleteInterface(c, defaultNetworkBridge)
 }
 
 func (s *DockerDaemonSuite) TestDaemonDefaultGatewayIPv4Explicit(c *check.C) {
 	defaultNetworkBridge := "docker0"
 	deleteInterface(c, defaultNetworkBridge)
 
 	d := s.d
 
6b3c9281
 	bridgeIP := "192.169.1.1"
 	bridgeIPNet := fmt.Sprintf("%s/24", bridgeIP)
 	gatewayIP := "192.169.1.254"
5fa60149
 
c502fb49
 	d.StartWithBusybox(c, "--bip", bridgeIPNet, "--default-gateway", gatewayIP)
 	defer d.Restart(c)
5fa60149
 
6b3c9281
 	expectedMessage := fmt.Sprintf("default via %s dev", gatewayIP)
5fa60149
 	out, err := d.Cmd("run", "busybox", "ip", "-4", "route", "list", "0/0")
c502fb49
 	c.Assert(err, checker.IsNil)
5fa60149
 	c.Assert(strings.Contains(out, expectedMessage), check.Equals, true,
 		check.Commentf("Explicit default gateway should be %s, but default route was '%s'",
6b3c9281
 			gatewayIP, strings.TrimSpace(out)))
5fa60149
 	deleteInterface(c, defaultNetworkBridge)
 }
 
4964ab08
 func (s *DockerDaemonSuite) TestDaemonDefaultGatewayIPv4ExplicitOutsideContainerSubnet(c *check.C) {
 	defaultNetworkBridge := "docker0"
 	deleteInterface(c, defaultNetworkBridge)
 
 	// Program a custom default gateway outside of the container subnet, daemon should accept it and start
c502fb49
 	s.d.StartWithBusybox(c, "--bip", "172.16.0.10/16", "--fixed-cidr", "172.16.1.0/24", "--default-gateway", "172.16.0.254")
4964ab08
 
 	deleteInterface(c, defaultNetworkBridge)
c502fb49
 	s.d.Restart(c)
4964ab08
 }
 
37627427
 func (s *DockerDaemonSuite) TestDaemonDefaultNetworkInvalidClusterConfig(c *check.C) {
157b66ad
 	testRequires(c, DaemonIsLinux, SameHostDaemon)
37627427
 
 	// Start daemon without docker0 bridge
 	defaultNetworkBridge := "docker0"
 	deleteInterface(c, defaultNetworkBridge)
 
 	discoveryBackend := "consul://consuladdr:consulport/some/path"
c502fb49
 	s.d.Start(c, fmt.Sprintf("--cluster-store=%s", discoveryBackend))
37627427
 
 	// Start daemon with docker0 bridge
d7022f2b
 	result := icmd.RunCommand("ifconfig", defaultNetworkBridge)
92427b3a
 	result.Assert(c, icmd.Success)
37627427
 
c502fb49
 	s.d.Restart(c, fmt.Sprintf("--cluster-store=%s", discoveryBackend))
37627427
 }
 
ba11929e
 func (s *DockerDaemonSuite) TestDaemonIP(c *check.C) {
 	d := s.d
 
 	ipStr := "192.170.1.1/24"
 	ip, _, _ := net.ParseCIDR(ipStr)
 	args := []string{"--ip", ip.String()}
c502fb49
 	d.StartWithBusybox(c, args...)
 	defer d.Restart(c)
ba11929e
 
 	out, err := d.Cmd("run", "-d", "-p", "8000:8000", "busybox", "top")
dd0666e6
 	c.Assert(err, check.NotNil,
ba11929e
 		check.Commentf("Running a container must fail with an invalid --ip option"))
50d7fba7
 	c.Assert(strings.Contains(out, "Error starting userland proxy"), check.Equals, true)
ba11929e
 
 	ifName := "dummy"
87e3fcfe
 	createInterface(c, "dummy", ifName, ipStr)
1c073ec1
 	defer deleteInterface(c, ifName)
ba11929e
 
 	_, err = d.Cmd("run", "-d", "-p", "8000:8000", "busybox", "top")
 	c.Assert(err, check.IsNil)
 
87e3fcfe
 	result := icmd.RunCommand("iptables", "-t", "nat", "-nvL")
 	result.Assert(c, icmd.Success)
ba11929e
 	regex := fmt.Sprintf("DNAT.*%s.*dpt:8000", ip.String())
87e3fcfe
 	matched, _ := regexp.MatchString(regex, result.Combined())
ba11929e
 	c.Assert(matched, check.Equals, true,
87e3fcfe
 		check.Commentf("iptables output should have contained %q, but was %q", regex, result.Combined()))
0e254411
 }
 
dd0666e6
 func (s *DockerDaemonSuite) TestDaemonICCPing(c *check.C) {
79843b72
 	testRequires(c, bridgeNfIptables)
dd0666e6
 	d := s.d
 
 	bridgeName := "external-bridge"
6b3c9281
 	bridgeIP := "192.169.1.1/24"
dd0666e6
 
87e3fcfe
 	createInterface(c, "bridge", bridgeName, bridgeIP)
1c073ec1
 	defer deleteInterface(c, bridgeName)
dd0666e6
 
87e3fcfe
 	d.StartWithBusybox(c, "--bridge", bridgeName, "--icc=false")
c502fb49
 	defer d.Restart(c)
dd0666e6
 
87e3fcfe
 	result := icmd.RunCommand("iptables", "-nvL", "FORWARD")
 	result.Assert(c, icmd.Success)
dd0666e6
 	regex := fmt.Sprintf("DROP.*all.*%s.*%s", bridgeName, bridgeName)
87e3fcfe
 	matched, _ := regexp.MatchString(regex, result.Combined())
dd0666e6
 	c.Assert(matched, check.Equals, true,
87e3fcfe
 		check.Commentf("iptables output should have contained %q, but was %q", regex, result.Combined()))
dd0666e6
 
 	// Pinging another container must fail with --icc=false
 	pingContainers(c, d, true)
 
 	ipStr := "192.171.1.1/24"
 	ip, _, _ := net.ParseCIDR(ipStr)
 	ifName := "icc-dummy"
 
 	createInterface(c, "dummy", ifName, ipStr)
 
 	// But, Pinging external or a Host interface must succeed
 	pingCmd := fmt.Sprintf("ping -c 1 %s -W 1", ip.String())
c0d2f7b3
 	runArgs := []string{"run", "--rm", "busybox", "sh", "-c", pingCmd}
87e3fcfe
 	_, err := d.Cmd(runArgs...)
dd0666e6
 	c.Assert(err, check.IsNil)
 }
 
 func (s *DockerDaemonSuite) TestDaemonICCLinkExpose(c *check.C) {
 	d := s.d
 
 	bridgeName := "external-bridge"
6b3c9281
 	bridgeIP := "192.169.1.1/24"
dd0666e6
 
87e3fcfe
 	createInterface(c, "bridge", bridgeName, bridgeIP)
1c073ec1
 	defer deleteInterface(c, bridgeName)
dd0666e6
 
87e3fcfe
 	d.StartWithBusybox(c, "--bridge", bridgeName, "--icc=false")
c502fb49
 	defer d.Restart(c)
dd0666e6
 
87e3fcfe
 	result := icmd.RunCommand("iptables", "-nvL", "FORWARD")
 	result.Assert(c, icmd.Success)
dd0666e6
 	regex := fmt.Sprintf("DROP.*all.*%s.*%s", bridgeName, bridgeName)
87e3fcfe
 	matched, _ := regexp.MatchString(regex, result.Combined())
dd0666e6
 	c.Assert(matched, check.Equals, true,
87e3fcfe
 		check.Commentf("iptables output should have contained %q, but was %q", regex, result.Combined()))
dd0666e6
 
87e3fcfe
 	out, err := d.Cmd("run", "-d", "--expose", "4567", "--name", "icc1", "busybox", "nc", "-l", "-p", "4567")
d18919e3
 	c.Assert(err, check.IsNil, check.Commentf(out))
dd0666e6
 
 	out, err = d.Cmd("run", "--link", "icc1:icc1", "busybox", "nc", "icc1", "4567")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 }
 
d18919e3
 func (s *DockerDaemonSuite) TestDaemonLinksIpTablesRulesWhenLinkAndUnlink(c *check.C) {
 	bridgeName := "external-bridge"
6b3c9281
 	bridgeIP := "192.169.1.1/24"
d18919e3
 
87e3fcfe
 	createInterface(c, "bridge", bridgeName, bridgeIP)
d18919e3
 	defer deleteInterface(c, bridgeName)
 
c502fb49
 	s.d.StartWithBusybox(c, "--bridge", bridgeName, "--icc=false")
 	defer s.d.Restart(c)
d18919e3
 
87e3fcfe
 	_, err := s.d.Cmd("run", "-d", "--name", "child", "--publish", "8080:80", "busybox", "top")
d18919e3
 	c.Assert(err, check.IsNil)
 	_, err = s.d.Cmd("run", "-d", "--name", "parent", "--link", "child:http", "busybox", "top")
 	c.Assert(err, check.IsNil)
 
f4a34a1f
 	childIP, err := s.d.FindContainerIP("child")
 	c.Assert(err, checker.IsNil)
 	parentIP, err := s.d.FindContainerIP("parent")
 	c.Assert(err, checker.IsNil)
d18919e3
 
 	sourceRule := []string{"-i", bridgeName, "-o", bridgeName, "-p", "tcp", "-s", childIP, "--sport", "80", "-d", parentIP, "-j", "ACCEPT"}
 	destinationRule := []string{"-i", bridgeName, "-o", bridgeName, "-p", "tcp", "-s", parentIP, "--dport", "80", "-d", childIP, "-j", "ACCEPT"}
 	if !iptables.Exists("filter", "DOCKER", sourceRule...) || !iptables.Exists("filter", "DOCKER", destinationRule...) {
 		c.Fatal("Iptables rules not found")
 	}
 
 	s.d.Cmd("rm", "--link", "parent/http")
 	if iptables.Exists("filter", "DOCKER", sourceRule...) || iptables.Exists("filter", "DOCKER", destinationRule...) {
 		c.Fatal("Iptables rules should be removed when unlink")
 	}
 
 	s.d.Cmd("kill", "child")
 	s.d.Cmd("kill", "parent")
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonUlimitDefaults(c *check.C) {
157b66ad
 	testRequires(c, DaemonIsLinux)
3f390506
 
c502fb49
 	s.d.StartWithBusybox(c, "--default-ulimit", "nofile=42:42", "--default-ulimit", "nproc=1024:1024")
3f390506
 
57464c32
 	out, err := s.d.Cmd("run", "--ulimit", "nproc=2048", "--name=test", "busybox", "/bin/sh", "-c", "echo $(ulimit -n); echo $(ulimit -p)")
3f390506
 	if err != nil {
dc944ea7
 		c.Fatal(out, err)
3f390506
 	}
 
 	outArr := strings.Split(out, "\n")
 	if len(outArr) < 2 {
dc944ea7
 		c.Fatalf("got unexpected output: %s", out)
3f390506
 	}
 	nofile := strings.TrimSpace(outArr[0])
 	nproc := strings.TrimSpace(outArr[1])
 
 	if nofile != "42" {
dc944ea7
 		c.Fatalf("expected `ulimit -n` to be `42`, got: %s", nofile)
3f390506
 	}
 	if nproc != "2048" {
39bcaee4
 		c.Fatalf("expected `ulimit -p` to be 2048, got: %s", nproc)
3f390506
 	}
 
 	// Now restart daemon with a new default
c502fb49
 	s.d.Restart(c, "--default-ulimit", "nofile=43")
3f390506
 
57464c32
 	out, err = s.d.Cmd("start", "-a", "test")
3f390506
 	if err != nil {
dc944ea7
 		c.Fatal(err)
3f390506
 	}
 
 	outArr = strings.Split(out, "\n")
 	if len(outArr) < 2 {
dc944ea7
 		c.Fatalf("got unexpected output: %s", out)
3f390506
 	}
 	nofile = strings.TrimSpace(outArr[0])
 	nproc = strings.TrimSpace(outArr[1])
 
 	if nofile != "43" {
dc944ea7
 		c.Fatalf("expected `ulimit -n` to be `43`, got: %s", nofile)
3f390506
 	}
 	if nproc != "2048" {
39bcaee4
 		c.Fatalf("expected `ulimit -p` to be 2048, got: %s", nproc)
3f390506
 	}
 }
c5c72cf1
 
 // #11315
57464c32
 func (s *DockerDaemonSuite) TestDaemonRestartRenameContainer(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
c5c72cf1
 
57464c32
 	if out, err := s.d.Cmd("run", "--name=test", "busybox"); err != nil {
dc944ea7
 		c.Fatal(err, out)
c5c72cf1
 	}
 
57464c32
 	if out, err := s.d.Cmd("rename", "test", "test2"); err != nil {
dc944ea7
 		c.Fatal(err, out)
c5c72cf1
 	}
 
c502fb49
 	s.d.Restart(c)
c5c72cf1
 
57464c32
 	if out, err := s.d.Cmd("start", "test2"); err != nil {
dc944ea7
 		c.Fatal(err, out)
c5c72cf1
 	}
 }
dd6d2cd6
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLoggingDriverDefault(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
dd6d2cd6
 
e4468913
 	out, err := s.d.Cmd("run", "--name=test", "busybox", "echo", "testline")
 	c.Assert(err, check.IsNil, check.Commentf(out))
48de91a3
 	id, err := s.d.GetIDByName("test")
e4468913
 	c.Assert(err, check.IsNil)
dd6d2cd6
 
48de91a3
 	logPath := filepath.Join(s.d.Root, "containers", id, id+"-json.log")
dd6d2cd6
 
 	if _, err := os.Stat(logPath); err != nil {
dc944ea7
 		c.Fatal(err)
dd6d2cd6
 	}
 	f, err := os.Open(logPath)
 	if err != nil {
dc944ea7
 		c.Fatal(err)
dd6d2cd6
 	}
0ead6244
 	defer f.Close()
 
dd6d2cd6
 	var res struct {
c5bf2145
 		Log    string    `json:"log"`
 		Stream string    `json:"stream"`
 		Time   time.Time `json:"time"`
dd6d2cd6
 	}
 	if err := json.NewDecoder(f).Decode(&res); err != nil {
dc944ea7
 		c.Fatal(err)
dd6d2cd6
 	}
 	if res.Log != "testline\n" {
dc944ea7
 		c.Fatalf("Unexpected log line: %q, expected: %q", res.Log, "testline\n")
dd6d2cd6
 	}
 	if res.Stream != "stdout" {
dc944ea7
 		c.Fatalf("Unexpected stream: %q, expected: %q", res.Stream, "stdout")
dd6d2cd6
 	}
 	if !time.Now().After(res.Time) {
dc944ea7
 		c.Fatalf("Log time %v in future", res.Time)
dd6d2cd6
 	}
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLoggingDriverDefaultOverride(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
dd6d2cd6
 
e4468913
 	out, err := s.d.Cmd("run", "--name=test", "--log-driver=none", "busybox", "echo", "testline")
dd6d2cd6
 	if err != nil {
dc944ea7
 		c.Fatal(out, err)
dd6d2cd6
 	}
48de91a3
 	id, err := s.d.GetIDByName("test")
e4468913
 	c.Assert(err, check.IsNil)
dd6d2cd6
 
48de91a3
 	logPath := filepath.Join(s.d.Root, "containers", id, id+"-json.log")
dd6d2cd6
 
 	if _, err := os.Stat(logPath); err == nil || !os.IsNotExist(err) {
dc944ea7
 		c.Fatalf("%s shouldn't exits, error on Stat: %s", logPath, err)
dd6d2cd6
 	}
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLoggingDriverNone(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c, "--log-driver=none")
dd6d2cd6
 
e4468913
 	out, err := s.d.Cmd("run", "--name=test", "busybox", "echo", "testline")
dd6d2cd6
 	if err != nil {
dc944ea7
 		c.Fatal(out, err)
dd6d2cd6
 	}
48de91a3
 	id, err := s.d.GetIDByName("test")
e4468913
 	c.Assert(err, check.IsNil)
dd6d2cd6
 
48de91a3
 	logPath := filepath.Join(s.d.Root, "containers", id, id+"-json.log")
dd6d2cd6
 
 	if _, err := os.Stat(logPath); err == nil || !os.IsNotExist(err) {
dc944ea7
 		c.Fatalf("%s shouldn't exits, error on Stat: %s", logPath, err)
dd6d2cd6
 	}
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLoggingDriverNoneOverride(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c, "--log-driver=none")
dd6d2cd6
 
e4468913
 	out, err := s.d.Cmd("run", "--name=test", "--log-driver=json-file", "busybox", "echo", "testline")
dd6d2cd6
 	if err != nil {
dc944ea7
 		c.Fatal(out, err)
dd6d2cd6
 	}
48de91a3
 	id, err := s.d.GetIDByName("test")
e4468913
 	c.Assert(err, check.IsNil)
dd6d2cd6
 
48de91a3
 	logPath := filepath.Join(s.d.Root, "containers", id, id+"-json.log")
dd6d2cd6
 
 	if _, err := os.Stat(logPath); err != nil {
dc944ea7
 		c.Fatal(err)
dd6d2cd6
 	}
 	f, err := os.Open(logPath)
 	if err != nil {
dc944ea7
 		c.Fatal(err)
dd6d2cd6
 	}
0ead6244
 	defer f.Close()
 
dd6d2cd6
 	var res struct {
c5bf2145
 		Log    string    `json:"log"`
 		Stream string    `json:"stream"`
 		Time   time.Time `json:"time"`
dd6d2cd6
 	}
 	if err := json.NewDecoder(f).Decode(&res); err != nil {
dc944ea7
 		c.Fatal(err)
dd6d2cd6
 	}
 	if res.Log != "testline\n" {
dc944ea7
 		c.Fatalf("Unexpected log line: %q, expected: %q", res.Log, "testline\n")
dd6d2cd6
 	}
 	if res.Stream != "stdout" {
dc944ea7
 		c.Fatalf("Unexpected stream: %q, expected: %q", res.Stream, "stdout")
dd6d2cd6
 	}
 	if !time.Now().After(res.Time) {
dc944ea7
 		c.Fatalf("Log time %v in future", res.Time)
dd6d2cd6
 	}
 }
bdf3a029
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonLoggingDriverNoneLogsError(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c, "--log-driver=none")
bdf3a029
 
faf4604d
 	out, err := s.d.Cmd("run", "--name=test", "busybox", "echo", "testline")
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("logs", "test")
 	c.Assert(err, check.NotNil, check.Commentf("Logs should fail with 'none' driver"))
05dc9846
 	expected := `configured logging driver does not support reading`
faf4604d
 	c.Assert(out, checker.Contains, expected)
bdf3a029
 }
88dc6cc2
 
80b642ff
 func (s *DockerDaemonSuite) TestDaemonLoggingDriverShouldBeIgnoredForBuild(c *check.C) {
 	s.d.StartWithBusybox(c, "--log-driver=splunk")
 
 	out, err := s.d.Cmd("build")
 	out, code, err := s.d.BuildImageWithOut("busyboxs", `
         FROM busybox
         RUN echo foo`, false)
 	comment := check.Commentf("Failed to build image. output %s, exitCode %d, err %v", out, code, err)
 	c.Assert(err, check.IsNil, comment)
 	c.Assert(code, check.Equals, 0, comment)
 	c.Assert(out, checker.Contains, "foo", comment)
 }
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonUnixSockCleanedUp(c *check.C) {
16309bef
 	dir, err := ioutil.TempDir("", "socket-cleanup-test")
 	if err != nil {
dc944ea7
 		c.Fatal(err)
16309bef
 	}
 	defer os.RemoveAll(dir)
 
 	sockPath := filepath.Join(dir, "docker.sock")
c502fb49
 	s.d.Start(c, "--host", "unix://"+sockPath)
16309bef
 
 	if _, err := os.Stat(sockPath); err != nil {
dc944ea7
 		c.Fatal("socket does not exist")
16309bef
 	}
 
c502fb49
 	s.d.Stop(c)
16309bef
 
 	if _, err := os.Stat(sockPath); err == nil || !os.IsNotExist(err) {
dc944ea7
 		c.Fatal("unix socket is not cleaned up")
16309bef
 	}
 }
ef13dcd4
 
f7e417ea
 func (s *DockerDaemonSuite) TestDaemonWithWrongkey(c *check.C) {
ef13dcd4
 	type Config struct {
 		Crv string `json:"crv"`
 		D   string `json:"d"`
 		Kid string `json:"kid"`
 		Kty string `json:"kty"`
 		X   string `json:"x"`
 		Y   string `json:"y"`
 	}
 
 	os.Remove("/etc/docker/key.json")
c502fb49
 	s.d.Start(c)
 	s.d.Stop(c)
ef13dcd4
 
 	config := &Config{}
 	bytes, err := ioutil.ReadFile("/etc/docker/key.json")
 	if err != nil {
dc944ea7
 		c.Fatalf("Error reading key.json file: %s", err)
ef13dcd4
 	}
 
 	// byte[] to Data-Struct
 	if err := json.Unmarshal(bytes, &config); err != nil {
dc944ea7
 		c.Fatalf("Error Unmarshal: %s", err)
ef13dcd4
 	}
 
 	//replace config.Kid with the fake value
 	config.Kid = "VSAJ:FUYR:X3H2:B2VZ:KZ6U:CJD5:K7BX:ZXHY:UZXT:P4FT:MJWG:HRJ4"
 
 	// NEW Data-Struct to byte[]
 	newBytes, err := json.Marshal(&config)
 	if err != nil {
dc944ea7
 		c.Fatalf("Error Marshal: %s", err)
ef13dcd4
 	}
 
 	// write back
 	if err := ioutil.WriteFile("/etc/docker/key.json", newBytes, 0400); err != nil {
dc944ea7
 		c.Fatalf("Error ioutil.WriteFile: %s", err)
ef13dcd4
 	}
 
9a87553e
 	defer os.Remove("/etc/docker/key.json")
ef13dcd4
 
c502fb49
 	if err := s.d.StartWithError(); err == nil {
3941623f
 		c.Fatalf("It should not be successful to start daemon with wrong key: %v", err)
ef13dcd4
 	}
 
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
ef13dcd4
 
 	if !strings.Contains(string(content), "Public Key ID does not match") {
6ef1060c
 		c.Fatalf("Missing KeyID message from daemon logs: %s", string(content))
ef13dcd4
 	}
 }
db0ffba3
 
57464c32
 func (s *DockerDaemonSuite) TestDaemonRestartKillWait(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
db0ffba3
 
57464c32
 	out, err := s.d.Cmd("run", "-id", "busybox", "/bin/cat")
db0ffba3
 	if err != nil {
dc944ea7
 		c.Fatalf("Could not run /bin/cat: err=%v\n%s", err, out)
db0ffba3
 	}
 	containerID := strings.TrimSpace(out)
 
57464c32
 	if out, err := s.d.Cmd("kill", containerID); err != nil {
dc944ea7
 		c.Fatalf("Could not kill %s: err=%v\n%s", containerID, err, out)
db0ffba3
 	}
 
c502fb49
 	s.d.Restart(c)
db0ffba3
 
 	errchan := make(chan error)
 	go func() {
57464c32
 		if out, err := s.d.Cmd("wait", containerID); err != nil {
db0ffba3
 			errchan <- fmt.Errorf("%v:\n%s", err, out)
 		}
 		close(errchan)
 	}()
 
 	select {
 	case <-time.After(5 * time.Second):
dc944ea7
 		c.Fatal("Waiting on a stopped (killed) container timed out")
db0ffba3
 	case err := <-errchan:
 		if err != nil {
dc944ea7
 			c.Fatal(err)
db0ffba3
 		}
 	}
 }
05013f12
 
7fb7a477
 // TestHTTPSInfo connects via two-way authenticated HTTPS to the info endpoint
 func (s *DockerDaemonSuite) TestHTTPSInfo(c *check.C) {
05013f12
 	const (
e7fc6321
 		testDaemonHTTPSAddr = "tcp://localhost:4271"
05013f12
 	)
 
c502fb49
 	s.d.Start(c,
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
 		"--tlscert", "fixtures/https/server-cert.pem",
 		"--tlskey", "fixtures/https/server-key.pem",
 		"-H", testDaemonHTTPSAddr)
05013f12
 
c0d2f7b3
 	args := []string{
 		"--host", testDaemonHTTPSAddr,
c502fb49
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
c0d2f7b3
 		"--tlscert", "fixtures/https/client-cert.pem",
 		"--tlskey", "fixtures/https/client-key.pem",
 		"info",
 	}
 	out, err := s.d.Cmd(args...)
05013f12
 	if err != nil {
 		c.Fatalf("Error Occurred: %s and output: %s", err, out)
 	}
 }
 
7fb7a477
 // TestHTTPSRun connects via two-way authenticated HTTPS to the create, attach, start, and wait endpoints.
db1d5f7e
 // https://github.com/docker/docker/issues/19280
7fb7a477
 func (s *DockerDaemonSuite) TestHTTPSRun(c *check.C) {
db1d5f7e
 	const (
 		testDaemonHTTPSAddr = "tcp://localhost:4271"
 	)
 
c502fb49
 	s.d.StartWithBusybox(c, "--tlsverify", "--tlscacert", "fixtures/https/ca.pem", "--tlscert", "fixtures/https/server-cert.pem",
 		"--tlskey", "fixtures/https/server-key.pem", "-H", testDaemonHTTPSAddr)
db1d5f7e
 
c0d2f7b3
 	args := []string{
 		"--host", testDaemonHTTPSAddr,
 		"--tlsverify", "--tlscacert", "fixtures/https/ca.pem",
 		"--tlscert", "fixtures/https/client-cert.pem",
 		"--tlskey", "fixtures/https/client-key.pem",
 		"run", "busybox", "echo", "TLS response",
 	}
 	out, err := s.d.Cmd(args...)
db1d5f7e
 	if err != nil {
 		c.Fatalf("Error Occurred: %s and output: %s", err, out)
 	}
 
 	if !strings.Contains(out, "TLS response") {
 		c.Fatalf("expected output to include `TLS response`, got %v", out)
 	}
 }
 
7fb7a477
 // TestTLSVerify verifies that --tlsverify=false turns on tls
 func (s *DockerDaemonSuite) TestTLSVerify(c *check.C) {
f87053b9
 	out, err := exec.Command(dockerdBinary, "--tlsverify=false").CombinedOutput()
5ced3ab3
 	if err == nil || !strings.Contains(string(out), "Could not load X509 key pair") {
 		c.Fatalf("Daemon should not have started due to missing certs: %v\n%s", err, string(out))
 	}
 }
 
7fb7a477
 // TestHTTPSInfoRogueCert connects via two-way authenticated HTTPS to the info endpoint
05013f12
 // by using a rogue client certificate and checks that it fails with the expected error.
7fb7a477
 func (s *DockerDaemonSuite) TestHTTPSInfoRogueCert(c *check.C) {
05013f12
 	const (
496adadc
 		errBadCertificate   = "bad certificate"
e7fc6321
 		testDaemonHTTPSAddr = "tcp://localhost:4271"
05013f12
 	)
e7fc6321
 
c502fb49
 	s.d.Start(c,
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
 		"--tlscert", "fixtures/https/server-cert.pem",
 		"--tlskey", "fixtures/https/server-key.pem",
 		"-H", testDaemonHTTPSAddr)
05013f12
 
c0d2f7b3
 	args := []string{
 		"--host", testDaemonHTTPSAddr,
c502fb49
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
c0d2f7b3
 		"--tlscert", "fixtures/https/client-rogue-cert.pem",
 		"--tlskey", "fixtures/https/client-rogue-key.pem",
 		"info",
 	}
 	out, err := s.d.Cmd(args...)
05013f12
 	if err == nil || !strings.Contains(out, errBadCertificate) {
 		c.Fatalf("Expected err: %s, got instead: %s and output: %s", errBadCertificate, err, out)
 	}
 }
 
7fb7a477
 // TestHTTPSInfoRogueServerCert connects via two-way authenticated HTTPS to the info endpoint
05013f12
 // which provides a rogue server certificate and checks that it fails with the expected error
7fb7a477
 func (s *DockerDaemonSuite) TestHTTPSInfoRogueServerCert(c *check.C) {
05013f12
 	const (
 		errCaUnknown             = "x509: certificate signed by unknown authority"
e7fc6321
 		testDaemonRogueHTTPSAddr = "tcp://localhost:4272"
05013f12
 	)
c502fb49
 	s.d.Start(c,
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
 		"--tlscert", "fixtures/https/server-rogue-cert.pem",
 		"--tlskey", "fixtures/https/server-rogue-key.pem",
 		"-H", testDaemonRogueHTTPSAddr)
05013f12
 
c0d2f7b3
 	args := []string{
 		"--host", testDaemonRogueHTTPSAddr,
c502fb49
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
c0d2f7b3
 		"--tlscert", "fixtures/https/client-rogue-cert.pem",
 		"--tlskey", "fixtures/https/client-rogue-key.pem",
 		"info",
 	}
 	out, err := s.d.Cmd(args...)
05013f12
 	if err == nil || !strings.Contains(out, errCaUnknown) {
 		c.Fatalf("Expected err: %s, got instead: %s and output: %s", errCaUnknown, err, out)
 	}
 }
9c325c3f
 
48de91a3
 func pingContainers(c *check.C, d *daemon.Daemon, expectFailure bool) {
dd0666e6
 	var dargs []string
 	if d != nil {
48de91a3
 		dargs = []string{"--host", d.Sock()}
dd0666e6
 	}
 
 	args := append(dargs, "run", "-d", "--name", "container1", "busybox", "top")
668e2369
 	dockerCmd(c, args...)
9c325c3f
 
dd0666e6
 	args = append(dargs, "run", "--rm", "--link", "container1:alias1", "busybox", "sh", "-c")
9c325c3f
 	pingCmd := "ping -c 1 %s -W 1"
dd0666e6
 	args = append(args, fmt.Sprintf(pingCmd, "alias1"))
693ba98c
 	_, _, err := dockerCmdWithError(args...)
dd0666e6
 
 	if expectFailure {
 		c.Assert(err, check.NotNil)
 	} else {
 		c.Assert(err, check.IsNil)
 	}
9c325c3f
 
dd0666e6
 	args = append(dargs, "rm", "-f", "container1")
668e2369
 	dockerCmd(c, args...)
9c325c3f
 }
08230703
 
39165616
 func (s *DockerDaemonSuite) TestDaemonRestartWithSocketAsVolume(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
08230703
 
f4a34a1f
 	socket := filepath.Join(s.d.Folder, "docker.sock")
08230703
 
e4468913
 	out, err := s.d.Cmd("run", "--restart=always", "-v", socket+":/sock", "busybox")
08230703
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
c502fb49
 	s.d.Restart(c)
08230703
 }
39165616
 
511a7058
 // os.Kill should kill daemon ungracefully, leaving behind container mounts.
39bcaee4
 // A subsequent daemon restart should clean up said mounts.
511a7058
 func (s *DockerDaemonSuite) TestCleanupMountsAfterDaemonAndContainerKill(c *check.C) {
c502fb49
 	d := daemon.New(c, dockerBinary, dockerdBinary, daemon.Config{
da8032d7
 		Experimental: testEnv.DaemonInfo.ExperimentalBuild,
c502fb49
 	})
 	d.StartWithBusybox(c)
39165616
 
c502fb49
 	out, err := d.Cmd("run", "-d", "busybox", "top")
39165616
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	id := strings.TrimSpace(out)
f5e01452
 
 	// If there are no mounts with container id visible from the host
 	// (as those are in container's own mount ns), there is nothing
 	// to check here and the test should be skipped.
511a7058
 	mountOut, err := ioutil.ReadFile("/proc/self/mountinfo")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", mountOut))
f5e01452
 	if !strings.Contains(string(mountOut), id) {
 		d.Stop(c)
 		c.Skip("no container mounts visible in host ns")
 	}
511a7058
 
f5e01452
 	// kill the daemon
 	c.Assert(d.Kill(), check.IsNil)
9c4570a9
 
 	// kill the container
ddae20c0
 	icmd.RunCommand(ctrBinary, "--address", "/var/run/docker/containerd/docker-containerd.sock",
521e7eba
 		"--namespace", moby_daemon.ContainersNamespace, "tasks", "kill", id).Assert(c, icmd.Success)
511a7058
 
 	// restart daemon.
c502fb49
 	d.Restart(c)
9c4570a9
 
511a7058
 	// Now, container mounts should be gone.
 	mountOut, err = ioutil.ReadFile("/proc/self/mountinfo")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", mountOut))
f5e01452
 	comment := check.Commentf("%s is still mounted from older daemon start:\nDaemon root repository %s\n%s", id, d.Root, mountOut)
511a7058
 	c.Assert(strings.Contains(string(mountOut), id), check.Equals, false, comment)
c502fb49
 
 	d.Stop(c)
511a7058
 }
 
 // os.Interrupt should perform a graceful daemon shutdown and hence cleanup mounts.
 func (s *DockerDaemonSuite) TestCleanupMountsAfterGracefulShutdown(c *check.C) {
c502fb49
 	d := daemon.New(c, dockerBinary, dockerdBinary, daemon.Config{
da8032d7
 		Experimental: testEnv.DaemonInfo.ExperimentalBuild,
c502fb49
 	})
 	d.StartWithBusybox(c)
511a7058
 
c502fb49
 	out, err := d.Cmd("run", "-d", "busybox", "top")
511a7058
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	id := strings.TrimSpace(out)
 
 	// Send SIGINT and daemon should clean up
c502fb49
 	c.Assert(d.Signal(os.Interrupt), check.IsNil)
9c52b11e
 	// Wait for the daemon to stop.
c502fb49
 	c.Assert(<-d.Wait, checker.IsNil)
9c4570a9
 
b1d2f52b
 	mountOut, err := ioutil.ReadFile("/proc/self/mountinfo")
39165616
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", mountOut))
b1d2f52b
 
c502fb49
 	comment := check.Commentf("%s is still mounted from older daemon start:\nDaemon root repository %s\n%s", id, d.Root, mountOut)
b1d2f52b
 	c.Assert(strings.Contains(string(mountOut), id), check.Equals, false, comment)
39165616
 }
3cb14df6
 
 func (s *DockerDaemonSuite) TestRunContainerWithBridgeNone(c *check.C) {
157b66ad
 	testRequires(c, DaemonIsLinux, NotUserNamespace)
c502fb49
 	s.d.StartWithBusybox(c, "-b", "none")
3cb14df6
 
 	out, err := s.d.Cmd("run", "--rm", "busybox", "ip", "l")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(strings.Contains(out, "eth0"), check.Equals, false,
c9328c6c
 		check.Commentf("There shouldn't be eth0 in container in default(bridge) mode when bridge network is disabled: %s", out))
 
 	out, err = s.d.Cmd("run", "--rm", "--net=bridge", "busybox", "ip", "l")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(strings.Contains(out, "eth0"), check.Equals, false,
 		check.Commentf("There shouldn't be eth0 in container in bridge mode when bridge network is disabled: %s", out))
414cfe94
 	// the extra grep and awk clean up the output of `ip` to only list the number and name of
 	// interfaces, allowing for different versions of ip (e.g. inside and outside the container) to
 	// be used while still verifying that the interface list is the exact same
 	cmd := exec.Command("sh", "-c", "ip l | grep -E '^[0-9]+:' | awk -F: ' { print $1\":\"$2 } '")
0b209113
 	stdout := bytes.NewBuffer(nil)
 	cmd.Stdout = stdout
 	if err := cmd.Run(); err != nil {
 		c.Fatal("Failed to get host network interface")
 	}
414cfe94
 	out, err = s.d.Cmd("run", "--rm", "--net=host", "busybox", "sh", "-c", "ip l | grep -E '^[0-9]+:' | awk -F: ' { print $1\":\"$2 } '")
c9328c6c
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
0b209113
 	c.Assert(out, check.Equals, fmt.Sprintf("%s", stdout),
 		check.Commentf("The network interfaces in container should be the same with host when --net=host when bridge network is disabled: %s", out))
3cb14df6
 }
bdb77078
 
 func (s *DockerDaemonSuite) TestDaemonRestartWithContainerRunning(t *check.C) {
c502fb49
 	s.d.StartWithBusybox(t)
c983996e
 	if out, err := s.d.Cmd("run", "-d", "--name", "test", "busybox", "top"); err != nil {
bdb77078
 		t.Fatal(out, err)
 	}
c68e7f96
 
c502fb49
 	s.d.Restart(t)
bdb77078
 	// Container 'test' should be removed without error
 	if out, err := s.d.Cmd("rm", "test"); err != nil {
 		t.Fatal(out, err)
 	}
 }
c68e7f96
 
 func (s *DockerDaemonSuite) TestDaemonRestartCleanupNetns(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
c68e7f96
 	out, err := s.d.Cmd("run", "--name", "netns", "-d", "busybox", "top")
 	if err != nil {
 		c.Fatal(out, err)
 	}
56fdb052
 
 	// Get sandbox key via inspect
 	out, err = s.d.Cmd("inspect", "--format", "'{{.NetworkSettings.SandboxKey}}'", "netns")
 	if err != nil {
 		c.Fatalf("Error inspecting container: %s, %v", out, err)
 	}
 	fileName := strings.Trim(out, " \r\n'")
 
c68e7f96
 	if out, err := s.d.Cmd("stop", "netns"); err != nil {
 		c.Fatal(out, err)
 	}
 
 	// Test if the file still exists
87e3fcfe
 	icmd.RunCommand("stat", "-c", "%n", fileName).Assert(c, icmd.Expected{
 		Out: fileName,
 	})
c68e7f96
 
 	// Remove the container and restart the daemon
 	if out, err := s.d.Cmd("rm", "netns"); err != nil {
 		c.Fatal(out, err)
 	}
 
c502fb49
 	s.d.Restart(c)
c68e7f96
 
 	// Test again and see now the netns file does not exist
87e3fcfe
 	icmd.RunCommand("stat", "-c", "%n", fileName).Assert(c, icmd.Expected{
 		Err:      "No such file or directory",
 		ExitCode: 1,
 	})
c68e7f96
 }
5a6a33f7
 
 // tests regression detailed in #13964 where DOCKER_TLS_VERIFY env is ignored
7fb7a477
 func (s *DockerDaemonSuite) TestDaemonTLSVerifyIssue13964(c *check.C) {
5a6a33f7
 	host := "tcp://localhost:4271"
c502fb49
 	s.d.Start(c, "-H", host)
87e3fcfe
 	icmd.RunCmd(icmd.Cmd{
 		Command: []string{dockerBinary, "-H", host, "info"},
 		Env:     []string{"DOCKER_TLS_VERIFY=1", "DOCKER_CERT_PATH=fixtures/https"},
 	}).Assert(c, icmd.Expected{
 		ExitCode: 1,
 		Err:      "error during connect",
 	})
2dfb7f3b
 }
 
6e7405eb
 func setupV6(c *check.C) {
2dfb7f3b
 	// Hack to get the right IPv6 address on docker0, which has already been created
6e7405eb
 	result := icmd.RunCommand("ip", "addr", "add", "fe80::1/64", "dev", "docker0")
87e3fcfe
 	result.Assert(c, icmd.Success)
2dfb7f3b
 }
 
6e7405eb
 func teardownV6(c *check.C) {
 	result := icmd.RunCommand("ip", "addr", "del", "fe80::1/64", "dev", "docker0")
87e3fcfe
 	result.Assert(c, icmd.Success)
5a6a33f7
 }
af59c80b
 
 func (s *DockerDaemonSuite) TestDaemonRestartWithContainerWithRestartPolicyAlways(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
af59c80b
 
 	out, err := s.d.Cmd("run", "-d", "--restart", "always", "busybox", "top")
 	c.Assert(err, check.IsNil)
 	id := strings.TrimSpace(out)
 
 	_, err = s.d.Cmd("stop", id)
 	c.Assert(err, check.IsNil)
 	_, err = s.d.Cmd("wait", id)
 	c.Assert(err, check.IsNil)
 
 	out, err = s.d.Cmd("ps", "-q")
 	c.Assert(err, check.IsNil)
 	c.Assert(out, check.Equals, "")
 
c502fb49
 	s.d.Restart(c)
af59c80b
 
 	out, err = s.d.Cmd("ps", "-q")
 	c.Assert(err, check.IsNil)
 	c.Assert(strings.TrimSpace(out), check.Equals, id[:12])
 }
960791ba
 
3f61002b
 func (s *DockerDaemonSuite) TestDaemonWideLogConfig(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c, "--log-opt=max-size=1k")
1790980e
 	name := "logtest"
 	out, err := s.d.Cmd("run", "-d", "--log-opt=max-file=5", "--name", name, "busybox", "top")
3f61002b
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s, err: %v", out, err))
1790980e
 
 	out, err = s.d.Cmd("inspect", "-f", "{{ .HostConfig.LogConfig.Config }}", name)
3f61002b
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
1790980e
 	c.Assert(out, checker.Contains, "max-size:1k")
 	c.Assert(out, checker.Contains, "max-file:5")
 
 	out, err = s.d.Cmd("inspect", "-f", "{{ .HostConfig.LogConfig.Type }}", name)
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(strings.TrimSpace(out), checker.Equals, "json-file")
3f61002b
 }
9a9724ad
 
 func (s *DockerDaemonSuite) TestDaemonRestartWithPausedContainer(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
9a9724ad
 	if out, err := s.d.Cmd("run", "-i", "-d", "--name", "test", "busybox", "top"); err != nil {
 		c.Fatal(err, out)
 	}
 	if out, err := s.d.Cmd("pause", "test"); err != nil {
 		c.Fatal(err, out)
 	}
c502fb49
 	s.d.Restart(c)
9a9724ad
 
 	errchan := make(chan error)
 	go func() {
 		out, err := s.d.Cmd("start", "test")
 		if err != nil {
 			errchan <- fmt.Errorf("%v:\n%s", err, out)
 		}
 		name := strings.TrimSpace(out)
 		if name != "test" {
 			errchan <- fmt.Errorf("Paused container start error on docker daemon restart, expected 'test' but got '%s'", name)
 		}
 		close(errchan)
 	}()
 
 	select {
 	case <-time.After(5 * time.Second):
 		c.Fatal("Waiting on start a container timed out")
 	case err := <-errchan:
 		if err != nil {
 			c.Fatal(err)
 		}
 	}
b3b7eb27
 }
 
 func (s *DockerDaemonSuite) TestDaemonRestartRmVolumeInUse(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
b3b7eb27
 
 	out, err := s.d.Cmd("create", "-v", "test:/foo", "busybox")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
c502fb49
 	s.d.Restart(c)
9a9724ad
 
b3b7eb27
 	out, err = s.d.Cmd("volume", "rm", "test")
d3eca445
 	c.Assert(err, check.NotNil, check.Commentf("should not be able to remove in use volume after daemon restart"))
 	c.Assert(out, checker.Contains, "in use")
b3b7eb27
 }
 
 func (s *DockerDaemonSuite) TestDaemonRestartLocalVolumes(c *check.C) {
c502fb49
 	s.d.Start(c)
b3b7eb27
 
ba3f0bf0
 	_, err := s.d.Cmd("volume", "create", "test")
b3b7eb27
 	c.Assert(err, check.IsNil)
c502fb49
 	s.d.Restart(c)
b3b7eb27
 
 	_, err = s.d.Cmd("volume", "inspect", "test")
 	c.Assert(err, check.IsNil)
9a9724ad
 }
e3c47242
 
c502fb49
 // FIXME(vdemeester) should be a unit test
e3c47242
 func (s *DockerDaemonSuite) TestDaemonCorruptedLogDriverAddress(c *check.C) {
c502fb49
 	d := daemon.New(c, dockerBinary, dockerdBinary, daemon.Config{
da8032d7
 		Experimental: testEnv.DaemonInfo.ExperimentalBuild,
c502fb49
 	})
 	c.Assert(d.StartWithError("--log-driver=syslog", "--log-opt", "syslog-address=corrupted:42"), check.NotNil)
07d2c318
 	expected := "Failed to set log opts: syslog-address should be in form proto://address"
87e3fcfe
 	icmd.RunCommand("grep", expected, d.LogFileName()).Assert(c, icmd.Success)
e3c47242
 }
 
c502fb49
 // FIXME(vdemeester) should be a unit test
e3c47242
 func (s *DockerDaemonSuite) TestDaemonCorruptedFluentdAddress(c *check.C) {
c502fb49
 	d := daemon.New(c, dockerBinary, dockerdBinary, daemon.Config{
da8032d7
 		Experimental: testEnv.DaemonInfo.ExperimentalBuild,
c502fb49
 	})
 	c.Assert(d.StartWithError("--log-driver=fluentd", "--log-opt", "fluentd-address=corrupted:c"), check.NotNil)
e3c47242
 	expected := "Failed to set log opts: invalid fluentd-address corrupted:c: "
87e3fcfe
 	icmd.RunCommand("grep", expected, d.LogFileName()).Assert(c, icmd.Success)
e3c47242
 }
e38767e1
 
48de91a3
 // FIXME(vdemeester) Use a new daemon instance instead of the Suite one
e38767e1
 func (s *DockerDaemonSuite) TestDaemonStartWithoutHost(c *check.C) {
48de91a3
 	s.d.UseDefaultHost = true
e38767e1
 	defer func() {
48de91a3
 		s.d.UseDefaultHost = false
e38767e1
 	}()
c502fb49
 	s.d.Start(c)
e38767e1
 }
fbb01b81
 
48de91a3
 // FIXME(vdemeester) Use a new daemon instance instead of the Suite one
ddd5278b
 func (s *DockerDaemonSuite) TestDaemonStartWithDefaultTLSHost(c *check.C) {
48de91a3
 	s.d.UseDefaultTLSHost = true
fbb01b81
 	defer func() {
48de91a3
 		s.d.UseDefaultTLSHost = false
fbb01b81
 	}()
c502fb49
 	s.d.Start(c,
fbb01b81
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
 		"--tlscert", "fixtures/https/server-cert.pem",
c502fb49
 		"--tlskey", "fixtures/https/server-key.pem")
fbb01b81
 
 	// The client with --tlsverify should also use default host localhost:2376
 	tmpHost := os.Getenv("DOCKER_HOST")
 	defer func() {
 		os.Setenv("DOCKER_HOST", tmpHost)
 	}()
 
 	os.Setenv("DOCKER_HOST", "")
 
 	out, _ := dockerCmd(
 		c,
 		"--tlsverify",
 		"--tlscacert", "fixtures/https/ca.pem",
 		"--tlscert", "fixtures/https/client-cert.pem",
 		"--tlskey", "fixtures/https/client-key.pem",
 		"version",
 	)
 	if !strings.Contains(out, "Server") {
 		c.Fatalf("docker version should return information of server side")
 	}
ddd5278b
 
 	// ensure when connecting to the server that only a single acceptable CA is requested
 	contents, err := ioutil.ReadFile("fixtures/https/ca.pem")
 	c.Assert(err, checker.IsNil)
 	rootCert, err := helpers.ParseCertificatePEM(contents)
 	c.Assert(err, checker.IsNil)
 	rootPool := x509.NewCertPool()
 	rootPool.AddCert(rootCert)
 
 	var certRequestInfo *tls.CertificateRequestInfo
 	conn, err := tls.Dial("tcp", fmt.Sprintf("%s:%d", opts.DefaultHTTPHost, opts.DefaultTLSHTTPPort), &tls.Config{
 		RootCAs: rootPool,
 		GetClientCertificate: func(cri *tls.CertificateRequestInfo) (*tls.Certificate, error) {
 			certRequestInfo = cri
 			cert, err := tls.LoadX509KeyPair("fixtures/https/client-cert.pem", "fixtures/https/client-key.pem")
 			if err != nil {
 				return nil, err
 			}
 			return &cert, nil
 		},
 	})
 	c.Assert(err, checker.IsNil)
 	conn.Close()
 
 	c.Assert(certRequestInfo, checker.NotNil)
 	c.Assert(certRequestInfo.AcceptableCAs, checker.HasLen, 1)
 	c.Assert(certRequestInfo.AcceptableCAs[0], checker.DeepEquals, rootCert.RawSubject)
fbb01b81
 }
e8da75d4
 
 func (s *DockerDaemonSuite) TestBridgeIPIsExcludedFromAllocatorPool(c *check.C) {
 	defaultNetworkBridge := "docker0"
 	deleteInterface(c, defaultNetworkBridge)
 
 	bridgeIP := "192.169.1.1"
 	bridgeRange := bridgeIP + "/30"
 
c502fb49
 	s.d.StartWithBusybox(c, "--bip", bridgeRange)
 	defer s.d.Restart(c)
e8da75d4
 
 	var cont int
 	for {
 		contName := fmt.Sprintf("container%d", cont)
c502fb49
 		_, err := s.d.Cmd("run", "--name", contName, "-d", "busybox", "/bin/sleep", "2")
e8da75d4
 		if err != nil {
 			// pool exhausted
 			break
 		}
 		ip, err := s.d.Cmd("inspect", "--format", "'{{.NetworkSettings.IPAddress}}'", contName)
 		c.Assert(err, check.IsNil)
 
 		c.Assert(ip, check.Not(check.Equals), bridgeIP)
 		cont++
 	}
 }
4699ef8f
 
 // Test daemon for no space left on device error
59b83d8a
 func (s *DockerDaemonSuite) TestDaemonNoSpaceLeftOnDeviceError(c *check.C) {
8e0e9e0f
 	testRequires(c, SameHostDaemon, DaemonIsLinux, Network)
44d3f2f7
 
59b83d8a
 	testDir, err := ioutil.TempDir("", "no-space-left-on-device-test")
 	c.Assert(err, checker.IsNil)
 	defer os.RemoveAll(testDir)
 	c.Assert(mount.MakeRShared(testDir), checker.IsNil)
 	defer mount.Unmount(testDir)
5106c516
 
59b83d8a
 	// create a 2MiB image and mount it as graph root
 	// Why in a container? Because `mount` sometimes behaves weirdly and often fails outright on this test in debian:jessie (which is what the test suite runs under if run from the Makefile)
5c3d2d55
 	dockerCmd(c, "run", "--rm", "-v", testDir+":/test", "busybox", "sh", "-c", "dd of=/test/testfs.img bs=1M seek=3 count=0")
87e3fcfe
 	icmd.RunCommand("mkfs.ext4", "-F", filepath.Join(testDir, "testfs.img")).Assert(c, icmd.Success)
47c353eb
 
87e3fcfe
 	result := icmd.RunCommand("losetup", "-f", "--show", filepath.Join(testDir, "testfs.img"))
 	result.Assert(c, icmd.Success)
 	loopname := strings.TrimSpace(string(result.Combined()))
47c353eb
 	defer exec.Command("losetup", "-d", loopname).Run()
 
 	dockerCmd(c, "run", "--privileged", "--rm", "-v", testDir+":/test:shared", "busybox", "sh", "-c", fmt.Sprintf("mkdir -p /test/test-mount && mount -t ext4 -no loop,rw %v /test/test-mount", loopname))
 	defer mount.Unmount(filepath.Join(testDir, "test-mount"))
5106c516
 
261ef1fa
 	s.d.Start(c, "--data-root", filepath.Join(testDir, "test-mount"))
c502fb49
 	defer s.d.Stop(c)
4699ef8f
 
 	// pull a repository large enough to fill the mount point
5739ba1b
 	pullOut, err := s.d.Cmd("pull", "debian:stretch")
5106c516
 	c.Assert(err, checker.NotNil, check.Commentf(pullOut))
 	c.Assert(pullOut, checker.Contains, "no space left on device")
4699ef8f
 }
19762da6
 
 // Test daemon restart with container links + auto restart
 func (s *DockerDaemonSuite) TestDaemonRestartContainerLinksRestart(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
19762da6
 
 	parent1Args := []string{}
 	parent2Args := []string{}
 	wg := sync.WaitGroup{}
 	maxChildren := 10
 	chErr := make(chan error, maxChildren)
 
 	for i := 0; i < maxChildren; i++ {
 		wg.Add(1)
 		name := fmt.Sprintf("test%d", i)
 
 		if i < maxChildren/2 {
 			parent1Args = append(parent1Args, []string{"--link", name}...)
 		} else {
 			parent2Args = append(parent2Args, []string{"--link", name}...)
 		}
 
 		go func() {
c502fb49
 			_, err := s.d.Cmd("run", "-d", "--name", name, "--restart=always", "busybox", "top")
19762da6
 			chErr <- err
 			wg.Done()
 		}()
 	}
 
 	wg.Wait()
 	close(chErr)
 	for err := range chErr {
 		c.Assert(err, check.IsNil)
 	}
 
 	parent1Args = append([]string{"run", "-d"}, parent1Args...)
 	parent1Args = append(parent1Args, []string{"--name=parent1", "--restart=always", "busybox", "top"}...)
 	parent2Args = append([]string{"run", "-d"}, parent2Args...)
 	parent2Args = append(parent2Args, []string{"--name=parent2", "--restart=always", "busybox", "top"}...)
 
c502fb49
 	_, err := s.d.Cmd(parent1Args...)
19762da6
 	c.Assert(err, check.IsNil)
5c0fd2d0
 	_, err = s.d.Cmd(parent2Args...)
19762da6
 	c.Assert(err, check.IsNil)
 
c502fb49
 	s.d.Stop(c)
19762da6
 	// clear the log file -- we don't need any of it but may for the next part
 	// can ignore the error here, this is just a cleanup
5c0fd2d0
 	os.Truncate(s.d.LogFileName(), 0)
c502fb49
 	s.d.Start(c)
19762da6
 
 	for _, num := range []string{"1", "2"} {
5c0fd2d0
 		out, err := s.d.Cmd("inspect", "-f", "{{ .State.Running }}", "parent"+num)
19762da6
 		c.Assert(err, check.IsNil)
 		if strings.TrimSpace(out) != "true" {
5c0fd2d0
 			log, _ := ioutil.ReadFile(s.d.LogFileName())
19762da6
 			c.Fatalf("parent container is not running\n%s", string(log))
 		}
 	}
 }
2e3186ab
 
 func (s *DockerDaemonSuite) TestDaemonCgroupParent(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 
 	cgroupParent := "test"
 	name := "cgroup-test"
 
c502fb49
 	s.d.StartWithBusybox(c, "--cgroup-parent", cgroupParent)
 	defer s.d.Restart(c)
2e3186ab
 
 	out, err := s.d.Cmd("run", "--name", name, "busybox", "cat", "/proc/self/cgroup")
 	c.Assert(err, checker.IsNil)
e8bd6718
 	cgroupPaths := ParseCgroupPaths(string(out))
2e3186ab
 	c.Assert(len(cgroupPaths), checker.Not(checker.Equals), 0, check.Commentf("unexpected output - %q", string(out)))
 	out, err = s.d.Cmd("inspect", "-f", "{{.Id}}", name)
 	c.Assert(err, checker.IsNil)
 	id := strings.TrimSpace(string(out))
 	expectedCgroup := path.Join(cgroupParent, id)
 	found := false
 	for _, path := range cgroupPaths {
 		if strings.HasSuffix(path, expectedCgroup) {
 			found = true
 			break
 		}
 	}
 	c.Assert(found, checker.True, check.Commentf("Cgroup path for container (%s) doesn't found in cgroups file: %s", expectedCgroup, cgroupPaths))
 }
0f9f9950
 
 func (s *DockerDaemonSuite) TestDaemonRestartWithLinks(c *check.C) {
 	testRequires(c, DaemonIsLinux) // Windows does not support links
c502fb49
 	s.d.StartWithBusybox(c)
0f9f9950
 
 	out, err := s.d.Cmd("run", "-d", "--name=test", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("run", "--name=test2", "--link", "test:abc", "busybox", "sh", "-c", "ping -c 1 -w 1 abc")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
c502fb49
 	s.d.Restart(c)
0f9f9950
 
 	// should fail since test is not running yet
 	out, err = s.d.Cmd("start", "test2")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("start", "test")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	out, err = s.d.Cmd("start", "-a", "test2")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	c.Assert(strings.Contains(out, "1 packets transmitted, 1 packets received"), check.Equals, true, check.Commentf(out))
 }
 
 func (s *DockerDaemonSuite) TestDaemonRestartWithNames(c *check.C) {
 	testRequires(c, DaemonIsLinux) // Windows does not support links
c502fb49
 	s.d.StartWithBusybox(c)
0f9f9950
 
 	out, err := s.d.Cmd("create", "--name=test", "busybox")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("run", "-d", "--name=test2", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	test2ID := strings.TrimSpace(out)
 
 	out, err = s.d.Cmd("run", "-d", "--name=test3", "--link", "test2:abc", "busybox", "top")
 	test3ID := strings.TrimSpace(out)
 
c502fb49
 	s.d.Restart(c)
0f9f9950
 
 	out, err = s.d.Cmd("create", "--name=test", "busybox")
 	c.Assert(err, check.NotNil, check.Commentf("expected error trying to create container with duplicate name"))
 	// this one is no longer needed, removing simplifies the remainder of the test
 	out, err = s.d.Cmd("rm", "-f", "test")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("ps", "-a", "--no-trunc")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	lines := strings.Split(strings.TrimSpace(out), "\n")[1:]
 
 	test2validated := false
 	test3validated := false
 	for _, line := range lines {
 		fields := strings.Fields(line)
 		names := fields[len(fields)-1]
 		switch fields[0] {
 		case test2ID:
 			c.Assert(names, check.Equals, "test2,test3/abc")
 			test2validated = true
 		case test3ID:
 			c.Assert(names, check.Equals, "test3")
 			test3validated = true
 		}
 	}
 
 	c.Assert(test2validated, check.Equals, true)
 	c.Assert(test3validated, check.Equals, true)
 }
 
006d58d7
 // TestDaemonRestartWithKilledRunningContainer requires live restore of running containers
 func (s *DockerDaemonSuite) TestDaemonRestartWithKilledRunningContainer(t *check.C) {
 	testRequires(t, DaemonIsLinux)
c502fb49
 	s.d.StartWithBusybox(t)
006d58d7
 
 	cid, err := s.d.Cmd("run", "-d", "--name", "test", "busybox", "top")
c502fb49
 	defer s.d.Stop(t)
006d58d7
 	if err != nil {
 		t.Fatal(cid, err)
 	}
 	cid = strings.TrimSpace(cid)
 
6d36431e
 	pid, err := s.d.Cmd("inspect", "-f", "{{.State.Pid}}", cid)
 	t.Assert(err, check.IsNil)
 	pid = strings.TrimSpace(pid)
 
006d58d7
 	// Kill the daemon
 	if err := s.d.Kill(); err != nil {
 		t.Fatal(err)
 	}
 
 	// kill the container
ddae20c0
 	icmd.RunCommand(ctrBinary, "--address", "/var/run/docker/containerd/docker-containerd.sock",
521e7eba
 		"--namespace", moby_daemon.ContainersNamespace, "tasks", "kill", cid).Assert(t, icmd.Success)
006d58d7
 
 	// Give time to containerd to process the command if we don't
 	// the exit event might be received after we do the inspect
ecbb0e62
 	result := icmd.RunCommand("kill", "-0", pid)
 	for result.ExitCode == 0 {
6d36431e
 		time.Sleep(1 * time.Second)
ecbb0e62
 		// FIXME(vdemeester) should we check it doesn't error out ?
 		result = icmd.RunCommand("kill", "-0", pid)
006d58d7
 	}
 
 	// restart the daemon
c502fb49
 	s.d.Start(t)
006d58d7
 
 	// Check that we've got the correct exit code
 	out, err := s.d.Cmd("inspect", "-f", "{{.State.ExitCode}}", cid)
 	t.Assert(err, check.IsNil)
 
 	out = strings.TrimSpace(out)
 	if out != "143" {
 		t.Fatalf("Expected exit code '%s' got '%s' for container '%s'\n", "143", out, cid)
 	}
 
 }
 
 // os.Kill should kill daemon ungracefully, leaving behind live containers.
 // The live containers should be known to the restarted daemon. Stopping
 // them now, should remove the mounts.
 func (s *DockerDaemonSuite) TestCleanupMountsAfterDaemonCrash(c *check.C) {
 	testRequires(c, DaemonIsLinux)
c502fb49
 	s.d.StartWithBusybox(c, "--live-restore")
006d58d7
 
 	out, err := s.d.Cmd("run", "-d", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	id := strings.TrimSpace(out)
 
f5e01452
 	// kill the daemon
 	c.Assert(s.d.Kill(), check.IsNil)
 
 	// Check if there are mounts with container id visible from the host.
 	// If not, those mounts exist in container's own mount ns, and so
 	// the following check for mounts being cleared is pointless.
 	skipMountCheck := false
006d58d7
 	mountOut, err := ioutil.ReadFile("/proc/self/mountinfo")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", mountOut))
f5e01452
 	if !strings.Contains(string(mountOut), id) {
 		skipMountCheck = true
 	}
006d58d7
 
 	// restart daemon.
c502fb49
 	s.d.Start(c, "--live-restore")
006d58d7
 
 	// container should be running.
fab2a3dc
 	out, err = s.d.Cmd("inspect", "--format={{.State.Running}}", id)
006d58d7
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	out = strings.TrimSpace(out)
 	if out != "true" {
 		c.Fatalf("Container %s expected to stay alive after daemon restart", id)
 	}
 
 	// 'docker stop' should work.
 	out, err = s.d.Cmd("stop", id)
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 
f5e01452
 	if skipMountCheck {
 		return
 	}
006d58d7
 	// Now, container mounts should be gone.
 	mountOut, err = ioutil.ReadFile("/proc/self/mountinfo")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", mountOut))
f5e01452
 	comment := check.Commentf("%s is still mounted from older daemon start:\nDaemon root repository %s\n%s", id, s.d.Root, mountOut)
006d58d7
 	c.Assert(strings.Contains(string(mountOut), id), check.Equals, false, comment)
 }
 
 // TestDaemonRestartWithUnpausedRunningContainer requires live restore of running containers.
 func (s *DockerDaemonSuite) TestDaemonRestartWithUnpausedRunningContainer(t *check.C) {
 	testRequires(t, DaemonIsLinux)
c502fb49
 	s.d.StartWithBusybox(t, "--live-restore")
006d58d7
 
 	cid, err := s.d.Cmd("run", "-d", "--name", "test", "busybox", "top")
c502fb49
 	defer s.d.Stop(t)
006d58d7
 	if err != nil {
 		t.Fatal(cid, err)
 	}
 	cid = strings.TrimSpace(cid)
 
6d36431e
 	pid, err := s.d.Cmd("inspect", "-f", "{{.State.Pid}}", cid)
 	t.Assert(err, check.IsNil)
 
006d58d7
 	// pause the container
 	if _, err := s.d.Cmd("pause", cid); err != nil {
 		t.Fatal(cid, err)
 	}
 
 	// Kill the daemon
 	if err := s.d.Kill(); err != nil {
 		t.Fatal(err)
 	}
 
 	// resume the container
d7022f2b
 	result := icmd.RunCommand(
 		ctrBinary,
ddae20c0
 		"--address", "/var/run/docker/containerd/docker-containerd.sock",
521e7eba
 		"--namespace", moby_daemon.ContainersNamespace,
ddae20c0
 		"tasks", "resume", cid)
92427b3a
 	result.Assert(t, icmd.Success)
006d58d7
 
 	// Give time to containerd to process the command if we don't
 	// the resume event might be received after we do the inspect
d7022f2b
 	waitAndAssert(t, defaultReconciliationTimeout, func(*check.C) (interface{}, check.CommentInterface) {
 		result := icmd.RunCommand("kill", "-0", strings.TrimSpace(pid))
 		return result.ExitCode, nil
 	}, checker.Equals, 0)
006d58d7
 
 	// restart the daemon
c502fb49
 	s.d.Start(t, "--live-restore")
006d58d7
 
 	// Check that we've got the correct status
 	out, err := s.d.Cmd("inspect", "-f", "{{.State.Status}}", cid)
 	t.Assert(err, check.IsNil)
 
 	out = strings.TrimSpace(out)
 	if out != "running" {
 		t.Fatalf("Expected exit code '%s' got '%s' for container '%s'\n", "running", out, cid)
 	}
 	if _, err := s.d.Cmd("kill", cid); err != nil {
 		t.Fatal(err)
 	}
0f9f9950
 }
 
 // TestRunLinksChanged checks that creating a new container with the same name does not update links
 // this ensures that the old, pre gh#16032 functionality continues on
 func (s *DockerDaemonSuite) TestRunLinksChanged(c *check.C) {
 	testRequires(c, DaemonIsLinux) // Windows does not support links
c502fb49
 	s.d.StartWithBusybox(c)
0f9f9950
 
 	out, err := s.d.Cmd("run", "-d", "--name=test", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("run", "--name=test2", "--link=test:abc", "busybox", "sh", "-c", "ping -c 1 abc")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "1 packets transmitted, 1 packets received")
 
 	out, err = s.d.Cmd("rm", "-f", "test")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	out, err = s.d.Cmd("run", "-d", "--name=test", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	out, err = s.d.Cmd("start", "-a", "test2")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, check.Not(checker.Contains), "1 packets transmitted, 1 packets received")
 
c502fb49
 	s.d.Restart(c)
0f9f9950
 	out, err = s.d.Cmd("start", "-a", "test2")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, check.Not(checker.Contains), "1 packets transmitted, 1 packets received")
 }
89859917
 
 func (s *DockerDaemonSuite) TestDaemonStartWithoutColors(c *check.C) {
008b2178
 	testRequires(c, DaemonIsLinux)
89859917
 
008b2178
 	infoLog := "\x1b[36mINFO\x1b"
89859917
 
c9e0d923
 	b := bytes.NewBuffer(nil)
 	done := make(chan bool)
 
89859917
 	p, tty, err := pty.Open()
 	c.Assert(err, checker.IsNil)
 	defer func() {
 		tty.Close()
 		p.Close()
 	}()
 
c9e0d923
 	go func() {
 		io.Copy(b, p)
 		done <- true
 	}()
89859917
 
 	// Enable coloring explicitly
5c0fd2d0
 	s.d.StartWithLogFile(tty, "--raw-logs=false")
c502fb49
 	s.d.Stop(c)
c9e0d923
 	// Wait for io.Copy() before checking output
 	<-done
89859917
 	c.Assert(b.String(), checker.Contains, infoLog)
 
 	b.Reset()
 
c9e0d923
 	// "tty" is already closed in prev s.d.Stop(),
 	// we have to close the other side "p" and open another pair of
 	// pty for the next test.
 	p.Close()
 	p, tty, err = pty.Open()
 	c.Assert(err, checker.IsNil)
 
 	go func() {
 		io.Copy(b, p)
 		done <- true
 	}()
 
89859917
 	// Disable coloring explicitly
5c0fd2d0
 	s.d.StartWithLogFile(tty, "--raw-logs=true")
c502fb49
 	s.d.Stop(c)
c9e0d923
 	// Wait for io.Copy() before checking output
 	<-done
 	c.Assert(b.String(), check.Not(check.Equals), "")
89859917
 	c.Assert(b.String(), check.Not(checker.Contains), infoLog)
 }
9f315dd3
 
 func (s *DockerDaemonSuite) TestDaemonDebugLog(c *check.C) {
008b2178
 	testRequires(c, DaemonIsLinux)
9f315dd3
 
 	debugLog := "\x1b[37mDEBU\x1b"
 
 	p, tty, err := pty.Open()
 	c.Assert(err, checker.IsNil)
 	defer func() {
 		tty.Close()
 		p.Close()
 	}()
 
 	b := bytes.NewBuffer(nil)
 	go io.Copy(b, p)
 
5c0fd2d0
 	s.d.StartWithLogFile(tty, "--debug")
c502fb49
 	s.d.Stop(c)
9f315dd3
 	c.Assert(b.String(), checker.Contains, debugLog)
 }
c9bec2be
 
5c0fd2d0
 func (s *DockerDaemonSuite) TestDaemonDiscoveryBackendConfigReload(c *check.C) {
c9bec2be
 	testRequires(c, SameHostDaemon, DaemonIsLinux)
 
 	// daemon config file
20f99a86
 	daemonConfig := `{ "debug" : false }`
 	configFile, err := ioutil.TempFile("", "test-daemon-discovery-backend-config-reload-config")
 	c.Assert(err, checker.IsNil, check.Commentf("could not create temp file for config reload"))
 	configFilePath := configFile.Name()
 	defer func() {
 		configFile.Close()
 		os.RemoveAll(configFile.Name())
 	}()
 
 	_, err = configFile.Write([]byte(daemonConfig))
 	c.Assert(err, checker.IsNil)
c9bec2be
 
6e7405eb
 	// --log-level needs to be set so that d.Start() doesn't add --debug causing
 	// a conflict with the config
c502fb49
 	s.d.Start(c, "--config-file", configFilePath, "--log-level=info")
c9bec2be
 
 	// daemon config file
20f99a86
 	daemonConfig = `{
c9bec2be
 	      "cluster-store": "consul://consuladdr:consulport/some/path",
 	      "cluster-advertise": "192.168.56.100:0",
 	      "debug" : false
 	}`
 
20f99a86
 	err = configFile.Truncate(0)
 	c.Assert(err, checker.IsNil)
 	_, err = configFile.Seek(0, os.SEEK_SET)
c9bec2be
 	c.Assert(err, checker.IsNil)
 
20f99a86
 	_, err = configFile.Write([]byte(daemonConfig))
 	c.Assert(err, checker.IsNil)
c9bec2be
 
48de91a3
 	err = s.d.ReloadConfig()
20f99a86
 	c.Assert(err, checker.IsNil, check.Commentf("error reloading daemon config"))
c9bec2be
 
5c0fd2d0
 	out, err := s.d.Cmd("info")
c9bec2be
 	c.Assert(err, checker.IsNil)
6e7405eb
 
276a20dd
 	c.Assert(out, checker.Contains, fmt.Sprintf("Cluster Store: consul://consuladdr:consulport/some/path"))
 	c.Assert(out, checker.Contains, fmt.Sprintf("Cluster Advertise: 192.168.56.100:0"))
c9bec2be
 }
4b5404f1
 
 // Test for #21956
 func (s *DockerDaemonSuite) TestDaemonLogOptions(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c, "--log-driver=syslog", "--log-opt=syslog-address=udp://127.0.0.1:514")
4b5404f1
 
 	out, err := s.d.Cmd("run", "-d", "--log-driver=json-file", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	id := strings.TrimSpace(out)
 
 	out, err = s.d.Cmd("inspect", "--format='{{.HostConfig.LogConfig}}'", id)
 	c.Assert(err, check.IsNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "{json-file map[]}")
 }
7368e41c
 
 // Test case for #20936, #22443
 func (s *DockerDaemonSuite) TestDaemonMaxConcurrency(c *check.C) {
c502fb49
 	s.d.Start(c, "--max-concurrent-uploads=6", "--max-concurrent-downloads=8")
7368e41c
 
 	expectedMaxConcurrentUploads := `level=debug msg="Max Concurrent Uploads: 6"`
 	expectedMaxConcurrentDownloads := `level=debug msg="Max Concurrent Downloads: 8"`
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
7368e41c
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentUploads)
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentDownloads)
 }
 
 // Test case for #20936, #22443
 func (s *DockerDaemonSuite) TestDaemonMaxConcurrencyWithConfigFile(c *check.C) {
 	testRequires(c, SameHostDaemon, DaemonIsLinux)
 
 	// daemon config file
 	configFilePath := "test.json"
 	configFile, err := os.Create(configFilePath)
 	c.Assert(err, checker.IsNil)
 	defer os.Remove(configFilePath)
 
 	daemonConfig := `{ "max-concurrent-downloads" : 8 }`
 	fmt.Fprintf(configFile, "%s", daemonConfig)
 	configFile.Close()
c502fb49
 	s.d.Start(c, fmt.Sprintf("--config-file=%s", configFilePath))
7368e41c
 
 	expectedMaxConcurrentUploads := `level=debug msg="Max Concurrent Uploads: 5"`
 	expectedMaxConcurrentDownloads := `level=debug msg="Max Concurrent Downloads: 8"`
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
7368e41c
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentUploads)
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentDownloads)
 
 	configFile, err = os.Create(configFilePath)
 	c.Assert(err, checker.IsNil)
 	daemonConfig = `{ "max-concurrent-uploads" : 7, "max-concurrent-downloads" : 9 }`
 	fmt.Fprintf(configFile, "%s", daemonConfig)
 	configFile.Close()
 
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGHUP), checker.IsNil)
 	// unix.Kill(s.d.cmd.Process.Pid, unix.SIGHUP)
7368e41c
 
 	time.Sleep(3 * time.Second)
 
 	expectedMaxConcurrentUploads = `level=debug msg="Reset Max Concurrent Uploads: 7"`
 	expectedMaxConcurrentDownloads = `level=debug msg="Reset Max Concurrent Downloads: 9"`
48de91a3
 	content, err = s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
7368e41c
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentUploads)
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentDownloads)
 }
 
 // Test case for #20936, #22443
 func (s *DockerDaemonSuite) TestDaemonMaxConcurrencyWithConfigFileReload(c *check.C) {
 	testRequires(c, SameHostDaemon, DaemonIsLinux)
 
 	// daemon config file
 	configFilePath := "test.json"
 	configFile, err := os.Create(configFilePath)
 	c.Assert(err, checker.IsNil)
 	defer os.Remove(configFilePath)
 
 	daemonConfig := `{ "max-concurrent-uploads" : null }`
 	fmt.Fprintf(configFile, "%s", daemonConfig)
 	configFile.Close()
c502fb49
 	s.d.Start(c, fmt.Sprintf("--config-file=%s", configFilePath))
7368e41c
 
 	expectedMaxConcurrentUploads := `level=debug msg="Max Concurrent Uploads: 5"`
 	expectedMaxConcurrentDownloads := `level=debug msg="Max Concurrent Downloads: 3"`
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
7368e41c
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentUploads)
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentDownloads)
 
 	configFile, err = os.Create(configFilePath)
 	c.Assert(err, checker.IsNil)
 	daemonConfig = `{ "max-concurrent-uploads" : 1, "max-concurrent-downloads" : null }`
 	fmt.Fprintf(configFile, "%s", daemonConfig)
 	configFile.Close()
 
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGHUP), checker.IsNil)
 	// unix.Kill(s.d.cmd.Process.Pid, unix.SIGHUP)
7368e41c
 
 	time.Sleep(3 * time.Second)
 
 	expectedMaxConcurrentUploads = `level=debug msg="Reset Max Concurrent Uploads: 1"`
 	expectedMaxConcurrentDownloads = `level=debug msg="Reset Max Concurrent Downloads: 3"`
48de91a3
 	content, err = s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
7368e41c
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentUploads)
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentDownloads)
 
 	configFile, err = os.Create(configFilePath)
 	c.Assert(err, checker.IsNil)
 	daemonConfig = `{ "labels":["foo=bar"] }`
 	fmt.Fprintf(configFile, "%s", daemonConfig)
 	configFile.Close()
 
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGHUP), checker.IsNil)
7368e41c
 
 	time.Sleep(3 * time.Second)
 
 	expectedMaxConcurrentUploads = `level=debug msg="Reset Max Concurrent Uploads: 5"`
 	expectedMaxConcurrentDownloads = `level=debug msg="Reset Max Concurrent Downloads: 3"`
48de91a3
 	content, err = s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
7368e41c
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentUploads)
 	c.Assert(string(content), checker.Contains, expectedMaxConcurrentDownloads)
 }
a8d01349
 
 func (s *DockerDaemonSuite) TestBuildOnDisabledBridgeNetworkDaemon(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c, "-b=none", "--iptables=false")
48de91a3
 	out, code, err := s.d.BuildImageWithOut("busyboxs",
a8d01349
 		`FROM busybox
                 RUN cat /etc/hosts`, false)
 	comment := check.Commentf("Failed to build image. output %s, exitCode %d, err %v", out, code, err)
 	c.Assert(err, check.IsNil, comment)
 	c.Assert(code, check.Equals, 0, comment)
 }
23821fe5
 
 // Test case for #21976
9af5d7c3
 func (s *DockerDaemonSuite) TestDaemonDNSFlagsInHostMode(c *check.C) {
23821fe5
 	testRequires(c, SameHostDaemon, DaemonIsLinux)
 
9af5d7c3
 	s.d.StartWithBusybox(c, "--dns", "1.2.3.4", "--dns-search", "example.com", "--dns-opt", "timeout:3")
23821fe5
 
 	expectedOutput := "nameserver 1.2.3.4"
 	out, _ := s.d.Cmd("run", "--net=host", "busybox", "cat", "/etc/resolv.conf")
 	c.Assert(out, checker.Contains, expectedOutput, check.Commentf("Expected '%s', but got %q", expectedOutput, out))
9af5d7c3
 	expectedOutput = "search example.com"
23821fe5
 	c.Assert(out, checker.Contains, expectedOutput, check.Commentf("Expected '%s', but got %q", expectedOutput, out))
9af5d7c3
 	expectedOutput = "options timeout:3"
23821fe5
 	c.Assert(out, checker.Contains, expectedOutput, check.Commentf("Expected '%s', but got %q", expectedOutput, out))
 }
7b2e5216
 
 func (s *DockerDaemonSuite) TestRunWithRuntimeFromConfigFile(c *check.C) {
 	conf, err := ioutil.TempFile("", "config-file-")
 	c.Assert(err, check.IsNil)
 	configName := conf.Name()
 	conf.Close()
 	defer os.Remove(configName)
 
 	config := `
 {
     "runtimes": {
         "oci": {
             "path": "docker-runc"
         },
         "vm": {
             "path": "/usr/local/bin/vm-manager",
             "runtimeArgs": [
                 "--debug"
             ]
         }
     }
 }
 `
 	ioutil.WriteFile(configName, []byte(config), 0644)
c502fb49
 	s.d.StartWithBusybox(c, "--config-file", configName)
7b2e5216
 
 	// Run with default runtime
 	out, err := s.d.Cmd("run", "--rm", "busybox", "ls")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
7135afa7
 	// Run with default runtime explicitly
69af7d0d
 	out, err = s.d.Cmd("run", "--rm", "--runtime=runc", "busybox", "ls")
7b2e5216
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	// Run with oci (same path as default) but keep it around
 	out, err = s.d.Cmd("run", "--name", "oci-runtime-ls", "--runtime=oci", "busybox", "ls")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	// Run with "vm"
 	out, err = s.d.Cmd("run", "--rm", "--runtime=vm", "busybox", "ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "/usr/local/bin/vm-manager: no such file or directory")
 
 	// Reset config to only have the default
 	config = `
 {
     "runtimes": {
     }
 }
 `
 	ioutil.WriteFile(configName, []byte(config), 0644)
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGHUP), checker.IsNil)
7b2e5216
 	// Give daemon time to reload config
 	<-time.After(1 * time.Second)
 
 	// Run with default runtime
69af7d0d
 	out, err = s.d.Cmd("run", "--rm", "--runtime=runc", "busybox", "ls")
7b2e5216
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	// Run with "oci"
 	out, err = s.d.Cmd("run", "--rm", "--runtime=oci", "busybox", "ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "Unknown runtime specified oci")
 
 	// Start previously created container with oci
 	out, err = s.d.Cmd("start", "oci-runtime-ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "Unknown runtime specified oci")
 
 	// Check that we can't override the default runtime
 	config = `
 {
     "runtimes": {
69af7d0d
         "runc": {
             "path": "my-runc"
7b2e5216
         }
     }
 }
 `
 	ioutil.WriteFile(configName, []byte(config), 0644)
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGHUP), checker.IsNil)
7b2e5216
 	// Give daemon time to reload config
 	<-time.After(1 * time.Second)
 
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
69af7d0d
 	c.Assert(string(content), checker.Contains, `file configuration validation failed (runtime name 'runc' is reserved)`)
7b2e5216
 
 	// Check that we can select a default runtime
 	config = `
 {
     "default-runtime": "vm",
     "runtimes": {
         "oci": {
             "path": "docker-runc"
         },
         "vm": {
             "path": "/usr/local/bin/vm-manager",
             "runtimeArgs": [
                 "--debug"
             ]
         }
     }
 }
 `
 	ioutil.WriteFile(configName, []byte(config), 0644)
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGHUP), checker.IsNil)
7b2e5216
 	// Give daemon time to reload config
 	<-time.After(1 * time.Second)
 
 	out, err = s.d.Cmd("run", "--rm", "busybox", "ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "/usr/local/bin/vm-manager: no such file or directory")
 
7135afa7
 	// Run with default runtime explicitly
69af7d0d
 	out, err = s.d.Cmd("run", "--rm", "--runtime=runc", "busybox", "ls")
7b2e5216
 	c.Assert(err, check.IsNil, check.Commentf(out))
 }
 
 func (s *DockerDaemonSuite) TestRunWithRuntimeFromCommandLine(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c, "--add-runtime", "oci=docker-runc", "--add-runtime", "vm=/usr/local/bin/vm-manager")
7b2e5216
 
 	// Run with default runtime
 	out, err := s.d.Cmd("run", "--rm", "busybox", "ls")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
7135afa7
 	// Run with default runtime explicitly
69af7d0d
 	out, err = s.d.Cmd("run", "--rm", "--runtime=runc", "busybox", "ls")
7b2e5216
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	// Run with oci (same path as default) but keep it around
 	out, err = s.d.Cmd("run", "--name", "oci-runtime-ls", "--runtime=oci", "busybox", "ls")
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	// Run with "vm"
 	out, err = s.d.Cmd("run", "--rm", "--runtime=vm", "busybox", "ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "/usr/local/bin/vm-manager: no such file or directory")
 
 	// Start a daemon without any extra runtimes
c502fb49
 	s.d.Stop(c)
 	s.d.StartWithBusybox(c)
7b2e5216
 
 	// Run with default runtime
69af7d0d
 	out, err = s.d.Cmd("run", "--rm", "--runtime=runc", "busybox", "ls")
7b2e5216
 	c.Assert(err, check.IsNil, check.Commentf(out))
 
 	// Run with "oci"
 	out, err = s.d.Cmd("run", "--rm", "--runtime=oci", "busybox", "ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "Unknown runtime specified oci")
 
 	// Start previously created container with oci
 	out, err = s.d.Cmd("start", "oci-runtime-ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "Unknown runtime specified oci")
 
 	// Check that we can't override the default runtime
c502fb49
 	s.d.Stop(c)
 	c.Assert(s.d.StartWithError("--add-runtime", "runc=my-runc"), checker.NotNil)
7b2e5216
 
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
69af7d0d
 	c.Assert(string(content), checker.Contains, `runtime name 'runc' is reserved`)
7b2e5216
 
 	// Check that we can select a default runtime
c502fb49
 	s.d.Stop(c)
 	s.d.StartWithBusybox(c, "--default-runtime=vm", "--add-runtime", "oci=docker-runc", "--add-runtime", "vm=/usr/local/bin/vm-manager")
7b2e5216
 
 	out, err = s.d.Cmd("run", "--rm", "busybox", "ls")
 	c.Assert(err, check.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "/usr/local/bin/vm-manager: no such file or directory")
 
7135afa7
 	// Run with default runtime explicitly
69af7d0d
 	out, err = s.d.Cmd("run", "--rm", "--runtime=runc", "busybox", "ls")
7b2e5216
 	c.Assert(err, check.IsNil, check.Commentf(out))
 }
3c2886d8
 
 func (s *DockerDaemonSuite) TestDaemonRestartWithAutoRemoveContainer(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
3c2886d8
 
 	// top1 will exist after daemon restarts
 	out, err := s.d.Cmd("run", "-d", "--name", "top1", "busybox:latest", "top")
 	c.Assert(err, checker.IsNil, check.Commentf("run top1: %v", out))
 	// top2 will be removed after daemon restarts
 	out, err = s.d.Cmd("run", "-d", "--rm", "--name", "top2", "busybox:latest", "top")
 	c.Assert(err, checker.IsNil, check.Commentf("run top2: %v", out))
 
 	out, err = s.d.Cmd("ps")
 	c.Assert(out, checker.Contains, "top1", check.Commentf("top1 should be running"))
 	c.Assert(out, checker.Contains, "top2", check.Commentf("top2 should be running"))
 
 	// now restart daemon gracefully
c502fb49
 	s.d.Restart(c)
3c2886d8
 
 	out, err = s.d.Cmd("ps", "-a")
 	c.Assert(err, checker.IsNil, check.Commentf("out: %v", out))
 	c.Assert(out, checker.Contains, "top1", check.Commentf("top1 should exist after daemon restarts"))
 	c.Assert(out, checker.Not(checker.Contains), "top2", check.Commentf("top2 should be removed after daemon restarts"))
 }
88bfa6ed
 
 func (s *DockerDaemonSuite) TestDaemonRestartSaveContainerExitCode(c *check.C) {
c502fb49
 	s.d.StartWithBusybox(c)
88bfa6ed
 
 	containerName := "error-values"
 	// Make a container with both a non 0 exit code and an error message
ba0afd70
 	// We explicitly disable `--init` for this test, because `--init` is enabled by default
 	// on "experimental". Enabling `--init` results in a different behavior; because the "init"
 	// process itself is PID1, the container does not fail on _startup_ (i.e., `docker-init` starting),
 	// but directly after. The exit code of the container is still 127, but the Error Message is not
 	// captured, so `.State.Error` is empty.
 	// See the discussion on https://github.com/docker/docker/pull/30227#issuecomment-274161426,
 	// and https://github.com/docker/docker/pull/26061#r78054578 for more information.
 	out, err := s.d.Cmd("run", "--name", containerName, "--init=false", "busybox", "toto")
88bfa6ed
 	c.Assert(err, checker.NotNil)
 
 	// Check that those values were saved on disk
 	out, err = s.d.Cmd("inspect", "-f", "{{.State.ExitCode}}", containerName)
 	out = strings.TrimSpace(out)
 	c.Assert(err, checker.IsNil)
 	c.Assert(out, checker.Equals, "127")
 
ba0afd70
 	errMsg1, err := s.d.Cmd("inspect", "-f", "{{.State.Error}}", containerName)
 	errMsg1 = strings.TrimSpace(errMsg1)
88bfa6ed
 	c.Assert(err, checker.IsNil)
ba0afd70
 	c.Assert(errMsg1, checker.Contains, "executable file not found")
88bfa6ed
 
 	// now restart daemon
c502fb49
 	s.d.Restart(c)
88bfa6ed
 
 	// Check that those values are still around
 	out, err = s.d.Cmd("inspect", "-f", "{{.State.ExitCode}}", containerName)
 	out = strings.TrimSpace(out)
 	c.Assert(err, checker.IsNil)
 	c.Assert(out, checker.Equals, "127")
 
 	out, err = s.d.Cmd("inspect", "-f", "{{.State.Error}}", containerName)
 	out = strings.TrimSpace(out)
 	c.Assert(err, checker.IsNil)
ba0afd70
 	c.Assert(out, checker.Equals, errMsg1)
88bfa6ed
 }
dc712b92
 
 func (s *DockerDaemonSuite) TestDaemonBackcompatPre17Volumes(c *check.C) {
 	testRequires(c, SameHostDaemon)
 	d := s.d
c502fb49
 	d.StartWithBusybox(c)
dc712b92
 
 	// hack to be able to side-load a container config
 	out, err := d.Cmd("create", "busybox:latest")
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 	id := strings.TrimSpace(out)
 
 	out, err = d.Cmd("inspect", "--type=image", "--format={{.ID}}", "busybox:latest")
 	c.Assert(err, checker.IsNil, check.Commentf(out))
c502fb49
 	d.Stop(c)
48de91a3
 	<-d.Wait
dc712b92
 
 	imageID := strings.TrimSpace(out)
 	volumeID := stringid.GenerateNonCryptoID()
48de91a3
 	vfsPath := filepath.Join(d.Root, "vfs", "dir", volumeID)
dc712b92
 	c.Assert(os.MkdirAll(vfsPath, 0755), checker.IsNil)
 
 	config := []byte(`
 		{
 			"ID": "` + id + `",
 			"Name": "hello",
48de91a3
 			"Driver": "` + d.StorageDriver() + `",
dc712b92
 			"Image": "` + imageID + `",
 			"Config": {"Image": "busybox:latest"},
 			"NetworkSettings": {},
 			"Volumes": {
 				"/bar":"/foo",
 				"/foo": "` + vfsPath + `",
 				"/quux":"/quux"
 			},
 			"VolumesRW": {
 				"/bar": true,
 				"/foo": true,
 				"/quux": false
 			}
 		}
 	`)
 
48de91a3
 	configPath := filepath.Join(d.Root, "containers", id, "config.v2.json")
76d96418
 	c.Assert(ioutil.WriteFile(configPath, config, 600), checker.IsNil)
c502fb49
 	d.Start(c)
dc712b92
 
 	out, err = d.Cmd("inspect", "--type=container", "--format={{ json .Mounts }}", id)
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 	type mount struct {
 		Name        string
 		Source      string
 		Destination string
 		Driver      string
 		RW          bool
 	}
 
 	ls := []mount{}
 	err = json.NewDecoder(strings.NewReader(out)).Decode(&ls)
 	c.Assert(err, checker.IsNil)
 
 	expected := []mount{
 		{Source: "/foo", Destination: "/bar", RW: true},
 		{Name: volumeID, Destination: "/foo", RW: true},
 		{Source: "/quux", Destination: "/quux", RW: false},
 	}
 	c.Assert(ls, checker.HasLen, len(expected))
 
 	for _, m := range ls {
 		var matched bool
 		for _, x := range expected {
 			if m.Source == x.Source && m.Destination == x.Destination && m.RW == x.RW || m.Name != x.Name {
 				matched = true
 				break
 			}
 		}
 		c.Assert(matched, checker.True, check.Commentf("did find match for %+v", m))
 	}
 }
dd2e1947
 
 func (s *DockerDaemonSuite) TestDaemonWithUserlandProxyPath(c *check.C) {
 	testRequires(c, SameHostDaemon, DaemonIsLinux)
 
 	dockerProxyPath, err := exec.LookPath("docker-proxy")
 	c.Assert(err, checker.IsNil)
 	tmpDir, err := ioutil.TempDir("", "test-docker-proxy")
 	c.Assert(err, checker.IsNil)
 
 	newProxyPath := filepath.Join(tmpDir, "docker-proxy")
 	cmd := exec.Command("cp", dockerProxyPath, newProxyPath)
 	c.Assert(cmd.Run(), checker.IsNil)
 
 	// custom one
c502fb49
 	s.d.StartWithBusybox(c, "--userland-proxy-path", newProxyPath)
dd2e1947
 	out, err := s.d.Cmd("run", "-p", "5000:5000", "busybox:latest", "true")
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 
 	// try with the original one
c502fb49
 	s.d.Restart(c, "--userland-proxy-path", dockerProxyPath)
dd2e1947
 	out, err = s.d.Cmd("run", "-p", "5000:5000", "busybox:latest", "true")
 	c.Assert(err, checker.IsNil, check.Commentf(out))
 
 	// not exist
c502fb49
 	s.d.Restart(c, "--userland-proxy-path", "/does/not/exist")
dd2e1947
 	out, err = s.d.Cmd("run", "-p", "5000:5000", "busybox:latest", "true")
 	c.Assert(err, checker.NotNil, check.Commentf(out))
 	c.Assert(out, checker.Contains, "driver failed programming external connectivity on endpoint")
 	c.Assert(out, checker.Contains, "/does/not/exist: no such file or directory")
 }
d7be6b2d
 
 // Test case for #22471
 func (s *DockerDaemonSuite) TestDaemonShutdownTimeout(c *check.C) {
 	testRequires(c, SameHostDaemon)
c502fb49
 	s.d.StartWithBusybox(c, "--shutdown-timeout=3")
d7be6b2d
 
 	_, err := s.d.Cmd("run", "-d", "busybox", "top")
 	c.Assert(err, check.IsNil)
 
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGINT), checker.IsNil)
d7be6b2d
 
 	select {
48de91a3
 	case <-s.d.Wait:
d7be6b2d
 	case <-time.After(5 * time.Second):
 	}
 
ed74ee12
 	expectedMessage := `level=debug msg="daemon configured with a 3 seconds minimum shutdown timeout"`
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
d7be6b2d
 	c.Assert(string(content), checker.Contains, expectedMessage)
 }
 
 // Test case for #22471
 func (s *DockerDaemonSuite) TestDaemonShutdownTimeoutWithConfigFile(c *check.C) {
 	testRequires(c, SameHostDaemon)
 
 	// daemon config file
 	configFilePath := "test.json"
 	configFile, err := os.Create(configFilePath)
 	c.Assert(err, checker.IsNil)
 	defer os.Remove(configFilePath)
 
 	daemonConfig := `{ "shutdown-timeout" : 8 }`
 	fmt.Fprintf(configFile, "%s", daemonConfig)
 	configFile.Close()
c502fb49
 	s.d.Start(c, fmt.Sprintf("--config-file=%s", configFilePath))
d7be6b2d
 
 	configFile, err = os.Create(configFilePath)
 	c.Assert(err, checker.IsNil)
 	daemonConfig = `{ "shutdown-timeout" : 5 }`
 	fmt.Fprintf(configFile, "%s", daemonConfig)
 	configFile.Close()
 
069fdc8a
 	c.Assert(s.d.Signal(unix.SIGHUP), checker.IsNil)
d7be6b2d
 
 	select {
48de91a3
 	case <-s.d.Wait:
d7be6b2d
 	case <-time.After(3 * time.Second):
 	}
 
 	expectedMessage := `level=debug msg="Reset Shutdown Timeout: 5"`
48de91a3
 	content, err := s.d.ReadLogFile()
 	c.Assert(err, checker.IsNil)
d7be6b2d
 	c.Assert(string(content), checker.Contains, expectedMessage)
 }
7feb2a17
 
 // Test case for 29342
 func (s *DockerDaemonSuite) TestExecWithUserAfterLiveRestore(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 	s.d.StartWithBusybox(c, "--live-restore")
 
c7c6167b
 	out, err := s.d.Cmd("run", "-d", "--name=top", "busybox", "sh", "-c", "addgroup -S test && adduser -S -G test test -D -s /bin/sh && touch /adduser_end && top")
7feb2a17
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 
77c725ea
 	s.d.WaitRun("top")
7feb2a17
 
c7c6167b
 	// Wait for shell command to be completed
 	_, err = s.d.Cmd("exec", "top", "sh", "-c", `for i in $(seq 1 5); do if [ -e /adduser_end ]; then rm -f /adduser_end && break; else sleep 1 && false; fi; done`)
 	c.Assert(err, check.IsNil, check.Commentf("Timeout waiting for shell command to be completed"))
 
7feb2a17
 	out1, err := s.d.Cmd("exec", "-u", "test", "top", "id")
 	// uid=100(test) gid=101(test) groups=101(test)
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out1))
 
 	// restart daemon.
 	s.d.Restart(c, "--live-restore")
 
 	out2, err := s.d.Cmd("exec", "-u", "test", "top", "id")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out2))
07cc7019
 	c.Assert(out2, check.Equals, out1, check.Commentf("Output: before restart '%s', after restart '%s'", out1, out2))
7feb2a17
 
 	out, err = s.d.Cmd("stop", "top")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 }
77c725ea
 
 func (s *DockerDaemonSuite) TestRemoveContainerAfterLiveRestore(c *check.C) {
 	testRequires(c, DaemonIsLinux, overlayFSSupported, SameHostDaemon)
 	s.d.StartWithBusybox(c, "--live-restore", "--storage-driver", "overlay")
 	out, err := s.d.Cmd("run", "-d", "--name=top", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 
 	s.d.WaitRun("top")
 
 	// restart daemon.
 	s.d.Restart(c, "--live-restore", "--storage-driver", "overlay")
 
 	out, err = s.d.Cmd("stop", "top")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 
 	// test if the rootfs mountpoint still exist
 	mountpoint, err := s.d.InspectField("top", ".GraphDriver.Data.MergedDir")
 	c.Assert(err, check.IsNil)
 	f, err := os.Open("/proc/self/mountinfo")
 	c.Assert(err, check.IsNil)
 	defer f.Close()
 	sc := bufio.NewScanner(f)
 	for sc.Scan() {
 		line := sc.Text()
 		if strings.Contains(line, mountpoint) {
 			c.Fatalf("mountinfo should not include the mountpoint of stop container")
 		}
 	}
 
 	out, err = s.d.Cmd("rm", "top")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
89f03409
 }
 
 // #29598
 func (s *DockerDaemonSuite) TestRestartPolicyWithLiveRestore(c *check.C) {
 	testRequires(c, DaemonIsLinux, SameHostDaemon)
 	s.d.StartWithBusybox(c, "--live-restore")
 
 	out, err := s.d.Cmd("run", "-d", "--restart", "always", "busybox", "top")
 	c.Assert(err, check.IsNil, check.Commentf("output: %s", out))
 	id := strings.TrimSpace(out)
77c725ea
 
89f03409
 	type state struct {
 		Running   bool
 		StartedAt time.Time
 	}
 	out, err = s.d.Cmd("inspect", "-f", "{{json .State}}", id)
 	c.Assert(err, checker.IsNil, check.Commentf("output: %s", out))
 
 	var origState state
 	err = json.Unmarshal([]byte(strings.TrimSpace(out)), &origState)
 	c.Assert(err, checker.IsNil)
 
 	s.d.Restart(c, "--live-restore")
 
 	pid, err := s.d.Cmd("inspect", "-f", "{{.State.Pid}}", id)
 	c.Assert(err, check.IsNil)
 	pidint, err := strconv.Atoi(strings.TrimSpace(pid))
 	c.Assert(err, check.IsNil)
 	c.Assert(pidint, checker.GreaterThan, 0)
069fdc8a
 	c.Assert(unix.Kill(pidint, unix.SIGKILL), check.IsNil)
89f03409
 
 	ticker := time.NewTicker(50 * time.Millisecond)
 	timeout := time.After(10 * time.Second)
 
 	for range ticker.C {
 		select {
 		case <-timeout:
 			c.Fatal("timeout waiting for container restart")
 		default:
 		}
 
 		out, err := s.d.Cmd("inspect", "-f", "{{json .State}}", id)
 		c.Assert(err, checker.IsNil, check.Commentf("output: %s", out))
 
 		var newState state
 		err = json.Unmarshal([]byte(strings.TrimSpace(out)), &newState)
 		c.Assert(err, checker.IsNil)
 
 		if !newState.Running {
 			continue
 		}
 		if newState.StartedAt.After(origState.StartedAt) {
 			break
 		}
 	}
 
 	out, err = s.d.Cmd("stop", id)
 	c.Assert(err, check.IsNil, check.Commentf("output: %s", out))
77c725ea
 }
db575ef6
 
 func (s *DockerDaemonSuite) TestShmSize(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 
 	size := 67108864 * 2
 	pattern := regexp.MustCompile(fmt.Sprintf("shm on /dev/shm type tmpfs(.*)size=%dk", size/1024))
 
 	s.d.StartWithBusybox(c, "--default-shm-size", fmt.Sprintf("%v", size))
 
 	name := "shm1"
 	out, err := s.d.Cmd("run", "--name", name, "busybox", "mount")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(pattern.MatchString(out), checker.True)
 	out, err = s.d.Cmd("inspect", "--format", "{{.HostConfig.ShmSize}}", name)
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(strings.TrimSpace(out), check.Equals, fmt.Sprintf("%v", size))
 }
 
 func (s *DockerDaemonSuite) TestShmSizeReload(c *check.C) {
 	testRequires(c, DaemonIsLinux)
 
 	configPath, err := ioutil.TempDir("", "test-daemon-shm-size-reload-config")
 	c.Assert(err, checker.IsNil, check.Commentf("could not create temp file for config reload"))
 	defer os.RemoveAll(configPath) // clean up
 	configFile := filepath.Join(configPath, "config.json")
 
 	size := 67108864 * 2
 	configData := []byte(fmt.Sprintf(`{"default-shm-size": "%dM"}`, size/1024/1024))
 	c.Assert(ioutil.WriteFile(configFile, configData, 0666), checker.IsNil, check.Commentf("could not write temp file for config reload"))
 	pattern := regexp.MustCompile(fmt.Sprintf("shm on /dev/shm type tmpfs(.*)size=%dk", size/1024))
 
 	s.d.StartWithBusybox(c, "--config-file", configFile)
 
 	name := "shm1"
 	out, err := s.d.Cmd("run", "--name", name, "busybox", "mount")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(pattern.MatchString(out), checker.True)
 	out, err = s.d.Cmd("inspect", "--format", "{{.HostConfig.ShmSize}}", name)
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(strings.TrimSpace(out), check.Equals, fmt.Sprintf("%v", size))
 
 	size = 67108864 * 3
 	configData = []byte(fmt.Sprintf(`{"default-shm-size": "%dM"}`, size/1024/1024))
 	c.Assert(ioutil.WriteFile(configFile, configData, 0666), checker.IsNil, check.Commentf("could not write temp file for config reload"))
 	pattern = regexp.MustCompile(fmt.Sprintf("shm on /dev/shm type tmpfs(.*)size=%dk", size/1024))
 
 	err = s.d.ReloadConfig()
 	c.Assert(err, checker.IsNil, check.Commentf("error reloading daemon config"))
 
 	name = "shm2"
 	out, err = s.d.Cmd("run", "--name", name, "busybox", "mount")
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(pattern.MatchString(out), checker.True)
 	out, err = s.d.Cmd("inspect", "--format", "{{.HostConfig.ShmSize}}", name)
 	c.Assert(err, check.IsNil, check.Commentf("Output: %s", out))
 	c.Assert(strings.TrimSpace(out), check.Equals, fmt.Sprintf("%v", size))
 }
11cf394e
 
9a60e1cc
 // this is used to test both "private" and "shareable" daemon default ipc modes
 func testDaemonIpcPrivateShareable(d *daemon.Daemon, c *check.C, mustExist bool) {
 	name := "test-ipcmode"
 	_, err := d.Cmd("run", "-d", "--name", name, "busybox", "top")
 	c.Assert(err, checker.IsNil)
 
 	// get major:minor pair for /dev/shm from container's /proc/self/mountinfo
 	cmd := "awk '($5 == \"/dev/shm\") {printf $3}' /proc/self/mountinfo"
 	mm, err := d.Cmd("exec", "-i", name, "sh", "-c", cmd)
 	c.Assert(err, checker.IsNil)
 	c.Assert(mm, checker.Matches, "^[0-9]+:[0-9]+$")
 
 	exists, err := testIpcCheckDevExists(mm)
 	c.Assert(err, checker.IsNil)
 	c.Logf("[testDaemonIpcPrivateShareable] ipcdev: %v, exists: %v, mustExist: %v\n", mm, exists, mustExist)
 	c.Assert(exists, checker.Equals, mustExist)
 }
 
 // TestDaemonIpcModeShareable checks that --default-ipc-mode shareable works as intended.
 func (s *DockerDaemonSuite) TestDaemonIpcModeShareable(c *check.C) {
8a987808
 	testRequires(c, DaemonIsLinux, SameHostDaemon)
9a60e1cc
 
 	s.d.StartWithBusybox(c, "--default-ipc-mode", "shareable")
 	testDaemonIpcPrivateShareable(s.d, c, true)
 }
 
 // TestDaemonIpcModePrivate checks that --default-ipc-mode private works as intended.
 func (s *DockerDaemonSuite) TestDaemonIpcModePrivate(c *check.C) {
8a987808
 	testRequires(c, DaemonIsLinux, SameHostDaemon)
9a60e1cc
 
 	s.d.StartWithBusybox(c, "--default-ipc-mode", "private")
 	testDaemonIpcPrivateShareable(s.d, c, false)
 }
 
 // used to check if an IpcMode given in config works as intended
 func testDaemonIpcFromConfig(s *DockerDaemonSuite, c *check.C, mode string, mustExist bool) {
 	f, err := ioutil.TempFile("", "test-daemon-ipc-config")
 	c.Assert(err, checker.IsNil)
 	defer os.Remove(f.Name())
 
 	config := `{"default-ipc-mode": "` + mode + `"}`
 	_, err = f.WriteString(config)
 	c.Assert(f.Close(), checker.IsNil)
 	c.Assert(err, checker.IsNil)
 
 	s.d.StartWithBusybox(c, "--config-file", f.Name())
 	testDaemonIpcPrivateShareable(s.d, c, mustExist)
 }
 
 // TestDaemonIpcModePrivateFromConfig checks that "default-ipc-mode: private" config works as intended.
 func (s *DockerDaemonSuite) TestDaemonIpcModePrivateFromConfig(c *check.C) {
8a987808
 	testRequires(c, DaemonIsLinux, SameHostDaemon)
9a60e1cc
 	testDaemonIpcFromConfig(s, c, "private", false)
 }
 
 // TestDaemonIpcModeShareableFromConfig checks that "default-ipc-mode: shareable" config works as intended.
 func (s *DockerDaemonSuite) TestDaemonIpcModeShareableFromConfig(c *check.C) {
8a987808
 	testRequires(c, DaemonIsLinux, SameHostDaemon)
9a60e1cc
 	testDaemonIpcFromConfig(s, c, "shareable", true)
 }
 
 func testDaemonStartIpcMode(c *check.C, from, mode string, valid bool) {
 	d := daemon.New(c, dockerBinary, dockerdBinary, daemon.Config{
da8032d7
 		Experimental: testEnv.DaemonInfo.ExperimentalBuild,
9a60e1cc
 	})
 	c.Logf("Checking IpcMode %s set from %s\n", mode, from)
 	var serr error
 	switch from {
 	case "config":
 		f, err := ioutil.TempFile("", "test-daemon-ipc-config")
 		c.Assert(err, checker.IsNil)
 		defer os.Remove(f.Name())
 		config := `{"default-ipc-mode": "` + mode + `"}`
 		_, err = f.WriteString(config)
 		c.Assert(f.Close(), checker.IsNil)
 		c.Assert(err, checker.IsNil)
 
 		serr = d.StartWithError("--config-file", f.Name())
 	case "cli":
 		serr = d.StartWithError("--default-ipc-mode", mode)
 	default:
 		c.Fatalf("testDaemonStartIpcMode: invalid 'from' argument")
 	}
 	if serr == nil {
 		d.Stop(c)
 	}
 
 	if valid {
 		c.Assert(serr, check.IsNil)
 	} else {
 		c.Assert(serr, check.NotNil)
 		icmd.RunCommand("grep", "-E", "IPC .* is (invalid|not supported)", d.LogFileName()).Assert(c, icmd.Success)
 	}
 }
 
 // TestDaemonStartWithIpcModes checks that daemon starts fine given correct
 // arguments for default IPC mode, and bails out with incorrect ones.
 // Both CLI option (--default-ipc-mode) and config parameter are tested.
 func (s *DockerDaemonSuite) TestDaemonStartWithIpcModes(c *check.C) {
8a987808
 	testRequires(c, DaemonIsLinux, SameHostDaemon)
 
9a60e1cc
 	ipcModes := []struct {
 		mode  string
 		valid bool
 	}{
 		{"private", true},
 		{"shareable", true},
 
 		{"host", false},
 		{"container:123", false},
 		{"nosuchmode", false},
 	}
 
 	for _, from := range []string{"config", "cli"} {
 		for _, m := range ipcModes {
 			testDaemonStartIpcMode(c, from, m.mode, m.valid)
 		}
 	}
 }
 
 // TestDaemonRestartIpcMode makes sure a container keeps its ipc mode
 // (derived from daemon default) even after the daemon is restarted
 // with a different default ipc mode.
 func (s *DockerDaemonSuite) TestDaemonRestartIpcMode(c *check.C) {
 	f, err := ioutil.TempFile("", "test-daemon-ipc-config-restart")
 	c.Assert(err, checker.IsNil)
 	file := f.Name()
 	defer os.Remove(file)
 	c.Assert(f.Close(), checker.IsNil)
 
 	config := []byte(`{"default-ipc-mode": "private"}`)
 	c.Assert(ioutil.WriteFile(file, config, 0644), checker.IsNil)
 	s.d.StartWithBusybox(c, "--config-file", file)
 
 	// check the container is created with private ipc mode as per daemon default
 	name := "ipc1"
 	_, err = s.d.Cmd("run", "-d", "--name", name, "--restart=always", "busybox", "top")
 	c.Assert(err, checker.IsNil)
 	m, err := s.d.InspectField(name, ".HostConfig.IpcMode")
 	c.Assert(err, check.IsNil)
 	c.Assert(m, checker.Equals, "private")
 
 	// restart the daemon with shareable default ipc mode
 	config = []byte(`{"default-ipc-mode": "shareable"}`)
 	c.Assert(ioutil.WriteFile(file, config, 0644), checker.IsNil)
 	s.d.Restart(c, "--config-file", file)
 
 	// check the container is still having private ipc mode
 	m, err = s.d.InspectField(name, ".HostConfig.IpcMode")
 	c.Assert(err, check.IsNil)
 	c.Assert(m, checker.Equals, "private")
 
 	// check a new container is created with shareable ipc mode as per new daemon default
 	name = "ipc2"
 	_, err = s.d.Cmd("run", "-d", "--name", name, "busybox", "top")
 	c.Assert(err, checker.IsNil)
 	m, err = s.d.InspectField(name, ".HostConfig.IpcMode")
 	c.Assert(err, check.IsNil)
 	c.Assert(m, checker.Equals, "shareable")
 }
 
11cf394e
 // TestFailedPluginRemove makes sure that a failed plugin remove does not block
 // the daemon from starting
 func (s *DockerDaemonSuite) TestFailedPluginRemove(c *check.C) {
 	testRequires(c, DaemonIsLinux, IsAmd64, SameHostDaemon)
 	d := daemon.New(c, dockerBinary, dockerdBinary, daemon.Config{})
 	d.Start(c)
 	cli, err := client.NewClient(d.Sock(), api.DefaultVersion, nil, nil)
 	c.Assert(err, checker.IsNil)
 
 	ctx, cancel := context.WithTimeout(context.Background(), 300*time.Second)
 	defer cancel()
 
 	name := "test-plugin-rm-fail"
 	out, err := cli.PluginInstall(ctx, name, types.PluginInstallOptions{
 		Disabled:             true,
 		AcceptAllPermissions: true,
 		RemoteRef:            "cpuguy83/docker-logdriver-test",
 	})
 	c.Assert(err, checker.IsNil)
 	defer out.Close()
 	io.Copy(ioutil.Discard, out)
 
 	ctx, cancel = context.WithTimeout(context.Background(), 30*time.Second)
 	defer cancel()
 	p, _, err := cli.PluginInspectWithRaw(ctx, name)
 	c.Assert(err, checker.IsNil)
 
 	// simulate a bad/partial removal by removing the plugin config.
 	configPath := filepath.Join(d.Root, "plugins", p.ID, "config.json")
 	c.Assert(os.Remove(configPath), checker.IsNil)
 
 	d.Restart(c)
 	ctx, cancel = context.WithTimeout(context.Background(), 30*time.Second)
 	defer cancel()
 	_, err = cli.Ping(ctx)
 	c.Assert(err, checker.IsNil)
 
 	_, _, err = cli.PluginInspectWithRaw(ctx, name)
 	// plugin should be gone since the config.json is gone
 	c.Assert(err, checker.NotNil)
 }