Parcourir la source

Merge pull request #45913 from corhere/backport-20.10/fix-volume-npe

Brian Goff il y a 2 ans
Parent
commit
b49bb5dcf8
2 fichiers modifiés avec 22 ajouts et 0 suppressions
  1. 4 0
      daemon/mounts.go
  2. 18 0
      integration/daemon/daemon_test.go

+ 4 - 0
daemon/mounts.go

@@ -17,6 +17,10 @@ func (daemon *Daemon) prepareMountPoints(container *container.Container) error {
 		if err := daemon.lazyInitializeVolume(container.ID, config); err != nil {
 		if err := daemon.lazyInitializeVolume(container.ID, config); err != nil {
 			return err
 			return err
 		}
 		}
+		if config.Volume == nil {
+			// FIXME(thaJeztah): should we check for config.Type here as well? (i.e., skip bind-mounts etc)
+			continue
+		}
 		if alive {
 		if alive {
 			logrus.WithFields(logrus.Fields{
 			logrus.WithFields(logrus.Fields{
 				"container": container.ID,
 				"container": container.ID,

+ 18 - 0
integration/daemon/daemon_test.go

@@ -102,4 +102,22 @@ func testLiveRestoreVolumeReferences(t *testing.T) {
 		err = c.VolumeRemove(ctx, v.Name, false)
 		err = c.VolumeRemove(ctx, v.Name, false)
 		assert.NilError(t, err)
 		assert.NilError(t, err)
 	})
 	})
+
+	// Make sure that we don't panic if the container has bind-mounts
+	// (which should not be "restored")
+	// Regression test for https://github.com/moby/moby/issues/45898
+	t.Run("container with bind-mounts", func(t *testing.T) {
+		m := mount.Mount{
+			Type:   mount.TypeBind,
+			Source: os.TempDir(),
+			Target: "/foo",
+		}
+		cID := container.Run(ctx, t, c, container.WithMount(m), container.WithCmd("top"))
+		defer c.ContainerRemove(ctx, cID, types.ContainerRemoveOptions{Force: true})
+
+		d.Restart(t, "--live-restore", "--iptables=false")
+
+		err := c.ContainerRemove(ctx, cID, types.ContainerRemoveOptions{Force: true})
+		assert.NilError(t, err)
+	})
 }
 }