-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request moby#35424 from cyphar/tar-split-cve_2017_14992
vendor: update to github.com/vbatts/[email protected]
- Loading branch information
Showing
5 changed files
with
81 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package image | ||
|
||
import ( | ||
"archive/tar" | ||
"bytes" | ||
"context" | ||
"io" | ||
"testing" | ||
|
||
"github.com/docker/docker/api/types" | ||
"github.com/docker/docker/integration/util/request" | ||
"github.com/docker/docker/internal/testutil" | ||
) | ||
|
||
// Ensure we don't regress on CVE-2017-14992. | ||
func TestImportExtremelyLargeImageWorks(t *testing.T) { | ||
client := request.NewAPIClient(t) | ||
|
||
// 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 | ||
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) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
43 changes: 28 additions & 15 deletions
43
vendor/github.com/vbatts/tar-split/tar/asm/disassemble.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.