2018-02-05 16:05:59 -05:00
|
|
|
package image // import "github.com/docker/docker/integration/image"
|
2017-11-07 11:30:47 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"archive/tar"
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"io"
|
2017-11-22 05:42:58 -05:00
|
|
|
"runtime"
|
2017-11-07 11:30:47 -05:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/docker/docker/api/types"
|
2019-01-03 06:09:24 -05:00
|
|
|
"github.com/docker/docker/internal/test/daemon"
|
2017-11-07 11:30:47 -05:00
|
|
|
"github.com/docker/docker/internal/testutil"
|
2018-08-02 16:24:51 -04:00
|
|
|
"gotest.tools/skip"
|
2017-11-07 11:30:47 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// Ensure we don't regress on CVE-2017-14992.
|
|
|
|
func TestImportExtremelyLargeImageWorks(t *testing.T) {
|
2019-01-03 06:09:24 -05:00
|
|
|
skip.If(t, testEnv.IsRemoteDaemon, "cannot run daemon when remote daemon")
|
2018-04-19 05:14:15 -04:00
|
|
|
skip.If(t, runtime.GOARCH == "arm64", "effective test will be time out")
|
|
|
|
skip.If(t, testEnv.OSType == "windows", "TODO enable on windows")
|
2019-01-03 06:09:24 -05:00
|
|
|
t.Parallel()
|
2017-11-22 05:42:58 -05:00
|
|
|
|
2019-01-03 06:09:24 -05:00
|
|
|
// Spin up a new daemon, so that we can run this test in parallel (it's a slow test)
|
|
|
|
d := daemon.New(t)
|
|
|
|
d.Start(t)
|
|
|
|
defer d.Stop(t)
|
|
|
|
|
|
|
|
client := d.NewClientT(t)
|
2017-11-07 11:30:47 -05:00
|
|
|
|
|
|
|
// Construct an empty tar archive with about 8GB of junk padding at the
|
|
|
|
// end. This should not cause any crashes (the padding should be mostly
|
|
|
|
// ignored).
|
|
|
|
var tarBuffer bytes.Buffer
|
2017-11-22 05:42:58 -05:00
|
|
|
|
2017-11-07 11:30:47 -05:00
|
|
|
tw := tar.NewWriter(&tarBuffer)
|
|
|
|
if err := tw.Close(); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
imageRdr := io.MultiReader(&tarBuffer, io.LimitReader(testutil.DevZero, 8*1024*1024*1024))
|
|
|
|
|
|
|
|
_, err := client.ImageImport(context.Background(),
|
|
|
|
types.ImageImportSource{Source: imageRdr, SourceName: "-"},
|
|
|
|
"test1234:v42",
|
|
|
|
types.ImageImportOptions{})
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|