123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- //go:build !windows
- package macvlan // import "github.com/docker/docker/integration/network/macvlan"
- import (
- "context"
- "strings"
- "testing"
- "github.com/docker/docker/client"
- "github.com/docker/docker/integration/internal/container"
- net "github.com/docker/docker/integration/internal/network"
- n "github.com/docker/docker/integration/network"
- "github.com/docker/docker/testutil"
- "github.com/docker/docker/testutil/daemon"
- "gotest.tools/v3/assert"
- "gotest.tools/v3/skip"
- )
- func TestDockerNetworkMacvlanPersistance(t *testing.T) {
- // verify the driver automatically provisions the 802.1q link (dm-dummy0.60)
- skip.If(t, testEnv.IsRemoteDaemon)
- skip.If(t, testEnv.IsRootless, "rootless mode has different view of network")
- ctx := testutil.StartSpan(baseContext, t)
- d := daemon.New(t)
- d.StartWithBusybox(ctx, t)
- defer d.Stop(t)
- master := "dm-dummy0"
- n.CreateMasterDummy(ctx, t, master)
- defer n.DeleteInterface(ctx, t, master)
- c := d.NewClientT(t)
- netName := "dm-persist"
- net.CreateNoError(ctx, t, c, netName,
- net.WithMacvlan("dm-dummy0.60"),
- )
- assert.Check(t, n.IsNetworkAvailable(ctx, c, netName))
- d.Restart(t)
- assert.Check(t, n.IsNetworkAvailable(ctx, c, netName))
- }
- func TestDockerNetworkMacvlan(t *testing.T) {
- skip.If(t, testEnv.IsRemoteDaemon)
- skip.If(t, testEnv.IsRootless, "rootless mode has different view of network")
- ctx := testutil.StartSpan(baseContext, t)
- for _, tc := range []struct {
- name string
- test func(context.Context, client.APIClient) func(*testing.T)
- }{
- {
- name: "Subinterface",
- test: testMacvlanSubinterface,
- }, {
- name: "OverlapParent",
- test: testMacvlanOverlapParent,
- }, {
- name: "NilParent",
- test: testMacvlanNilParent,
- }, {
- name: "InternalMode",
- test: testMacvlanInternalMode,
- }, {
- name: "MultiSubnet",
- test: testMacvlanMultiSubnet,
- }, {
- name: "Addressing",
- test: testMacvlanAddressing,
- },
- } {
- tc := tc
- t.Run(tc.name, func(t *testing.T) {
- testutil.StartSpan(ctx, t)
- d := daemon.New(t)
- t.Cleanup(func() { d.Stop(t) })
- d.StartWithBusybox(ctx, t)
- c := d.NewClientT(t)
- tc.test(ctx, c)
- })
- // FIXME(vdemeester) clean network
- }
- }
- func testMacvlanOverlapParent(ctx context.Context, client client.APIClient) func(*testing.T) {
- return func(t *testing.T) {
- // verify the same parent interface cannot be used if already in use by an existing network
- master := "dm-dummy0"
- n.CreateMasterDummy(ctx, t, master)
- defer n.DeleteInterface(ctx, t, master)
- netName := "dm-subinterface"
- parentName := "dm-dummy0.40"
- net.CreateNoError(ctx, t, client, netName,
- net.WithMacvlan(parentName),
- )
- assert.Check(t, n.IsNetworkAvailable(ctx, client, netName))
- _, err := net.Create(ctx, client, "dm-parent-net-overlap",
- net.WithMacvlan(parentName),
- )
- assert.Check(t, err != nil)
- // delete the network while preserving the parent link
- err = client.NetworkRemove(ctx, netName)
- assert.NilError(t, err)
- assert.Check(t, n.IsNetworkNotAvailable(ctx, client, netName))
- // verify the network delete did not delete the predefined link
- n.LinkExists(ctx, t, master)
- }
- }
- func testMacvlanSubinterface(ctx context.Context, client client.APIClient) func(*testing.T) {
- return func(t *testing.T) {
- // verify the same parent interface cannot be used if already in use by an existing network
- master := "dm-dummy0"
- parentName := "dm-dummy0.20"
- n.CreateMasterDummy(ctx, t, master)
- defer n.DeleteInterface(ctx, t, master)
- n.CreateVlanInterface(ctx, t, master, parentName, "20")
- netName := "dm-subinterface"
- net.CreateNoError(ctx, t, client, netName,
- net.WithMacvlan(parentName),
- )
- assert.Check(t, n.IsNetworkAvailable(ctx, client, netName))
- // delete the network while preserving the parent link
- err := client.NetworkRemove(ctx, netName)
- assert.NilError(t, err)
- assert.Check(t, n.IsNetworkNotAvailable(ctx, client, netName))
- // verify the network delete did not delete the predefined link
- n.LinkExists(ctx, t, parentName)
- }
- }
- func testMacvlanNilParent(ctx context.Context, client client.APIClient) func(*testing.T) {
- return func(t *testing.T) {
- // macvlan bridge mode - dummy parent interface is provisioned dynamically
- netName := "dm-nil-parent"
- net.CreateNoError(ctx, t, client, netName,
- net.WithMacvlan(""),
- )
- assert.Check(t, n.IsNetworkAvailable(ctx, client, netName))
- id1 := container.Run(ctx, t, client, container.WithNetworkMode(netName))
- id2 := container.Run(ctx, t, client, container.WithNetworkMode(netName))
- _, err := container.Exec(ctx, client, id2, []string{"ping", "-c", "1", id1})
- assert.Check(t, err == nil)
- }
- }
- func testMacvlanInternalMode(ctx context.Context, client client.APIClient) func(*testing.T) {
- return func(t *testing.T) {
- // macvlan bridge mode - dummy parent interface is provisioned dynamically
- netName := "dm-internal"
- net.CreateNoError(ctx, t, client, netName,
- net.WithMacvlan(""),
- net.WithInternal(),
- )
- assert.Check(t, n.IsNetworkAvailable(ctx, client, netName))
- id1 := container.Run(ctx, t, client, container.WithNetworkMode(netName))
- id2 := container.Run(ctx, t, client, container.WithNetworkMode(netName))
- result, _ := container.Exec(ctx, client, id1, []string{"ping", "-c", "1", "8.8.8.8"})
- assert.Check(t, strings.Contains(result.Combined(), "Network is unreachable"))
- _, err := container.Exec(ctx, client, id2, []string{"ping", "-c", "1", id1})
- assert.Check(t, err == nil)
- }
- }
- func testMacvlanMultiSubnet(ctx context.Context, client client.APIClient) func(*testing.T) {
- return func(t *testing.T) {
- netName := "dualstackbridge"
- net.CreateNoError(ctx, t, client, netName,
- net.WithMacvlan(""),
- net.WithIPv6(),
- net.WithIPAM("172.28.100.0/24", ""),
- net.WithIPAM("172.28.102.0/24", "172.28.102.254"),
- net.WithIPAM("2001:db8:abc2::/64", ""),
- net.WithIPAM("2001:db8:abc4::/64", "2001:db8:abc4::254"),
- )
- assert.Check(t, n.IsNetworkAvailable(ctx, client, netName))
- // start dual stack containers and verify the user specified --ip and --ip6 addresses on subnets 172.28.100.0/24 and 2001:db8:abc2::/64
- id1 := container.Run(ctx, t, client,
- container.WithNetworkMode("dualstackbridge"),
- container.WithIPv4("dualstackbridge", "172.28.100.20"),
- container.WithIPv6("dualstackbridge", "2001:db8:abc2::20"),
- )
- id2 := container.Run(ctx, t, client,
- container.WithNetworkMode("dualstackbridge"),
- container.WithIPv4("dualstackbridge", "172.28.100.21"),
- container.WithIPv6("dualstackbridge", "2001:db8:abc2::21"),
- )
- c1, err := client.ContainerInspect(ctx, id1)
- assert.NilError(t, err)
- // verify ipv4 connectivity to the explicit --ipv address second to first
- _, err = container.Exec(ctx, client, id2, []string{"ping", "-c", "1", c1.NetworkSettings.Networks["dualstackbridge"].IPAddress})
- assert.NilError(t, err)
- // verify ipv6 connectivity to the explicit --ipv6 address second to first
- _, err = container.Exec(ctx, client, id2, []string{"ping6", "-c", "1", c1.NetworkSettings.Networks["dualstackbridge"].GlobalIPv6Address})
- assert.NilError(t, err)
- // start dual stack containers and verify the user specified --ip and --ip6 addresses on subnets 172.28.102.0/24 and 2001:db8:abc4::/64
- id3 := container.Run(ctx, t, client,
- container.WithNetworkMode("dualstackbridge"),
- container.WithIPv4("dualstackbridge", "172.28.102.20"),
- container.WithIPv6("dualstackbridge", "2001:db8:abc4::20"),
- )
- id4 := container.Run(ctx, t, client,
- container.WithNetworkMode("dualstackbridge"),
- container.WithIPv4("dualstackbridge", "172.28.102.21"),
- container.WithIPv6("dualstackbridge", "2001:db8:abc4::21"),
- )
- c3, err := client.ContainerInspect(ctx, id3)
- assert.NilError(t, err)
- // verify ipv4 connectivity to the explicit --ipv address from third to fourth
- _, err = container.Exec(ctx, client, id4, []string{"ping", "-c", "1", c3.NetworkSettings.Networks["dualstackbridge"].IPAddress})
- assert.NilError(t, err)
- // verify ipv6 connectivity to the explicit --ipv6 address from third to fourth
- _, err = container.Exec(ctx, client, id4, []string{"ping6", "-c", "1", c3.NetworkSettings.Networks["dualstackbridge"].GlobalIPv6Address})
- assert.NilError(t, err)
- // Inspect the v4 gateway to ensure the proper default GW was assigned
- assert.Equal(t, c1.NetworkSettings.Networks["dualstackbridge"].Gateway, "172.28.100.1")
- // Inspect the v6 gateway to ensure the proper default GW was assigned
- assert.Equal(t, c1.NetworkSettings.Networks["dualstackbridge"].IPv6Gateway, "2001:db8:abc2::1")
- // Inspect the v4 gateway to ensure the proper explicitly assigned default GW was assigned
- assert.Equal(t, c3.NetworkSettings.Networks["dualstackbridge"].Gateway, "172.28.102.254")
- // Inspect the v6 gateway to ensure the proper explicitly assigned default GW was assigned
- assert.Equal(t, c3.NetworkSettings.Networks["dualstackbridge"].IPv6Gateway, "2001:db8:abc4::254")
- }
- }
- func testMacvlanAddressing(ctx context.Context, client client.APIClient) func(*testing.T) {
- return func(t *testing.T) {
- // Ensure the default gateways, next-hops and default dev devices are properly set
- netName := "dualstackbridge"
- net.CreateNoError(ctx, t, client, netName,
- net.WithMacvlan(""),
- net.WithIPv6(),
- net.WithOption("macvlan_mode", "bridge"),
- net.WithIPAM("172.28.130.0/24", ""),
- net.WithIPAM("2001:db8:abca::/64", "2001:db8:abca::254"),
- )
- assert.Check(t, n.IsNetworkAvailable(ctx, client, netName))
- id1 := container.Run(ctx, t, client,
- container.WithNetworkMode("dualstackbridge"),
- )
- // Validate macvlan bridge mode defaults gateway sets the default IPAM next-hop inferred from the subnet
- result, err := container.Exec(ctx, client, id1, []string{"ip", "route"})
- assert.NilError(t, err)
- assert.Check(t, strings.Contains(result.Combined(), "default via 172.28.130.1 dev eth0"))
- // Validate macvlan bridge mode sets the v6 gateway to the user specified default gateway/next-hop
- result, err = container.Exec(ctx, client, id1, []string{"ip", "-6", "route"})
- assert.NilError(t, err)
- assert.Check(t, strings.Contains(result.Combined(), "default via 2001:db8:abca::254 dev eth0"))
- }
- }
|