chunked: refactor value into const
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
parent
dcdc061f21
commit
1f54749ea9
|
|
@ -20,6 +20,12 @@ import (
|
|||
expMaps "golang.org/x/exp/maps"
|
||||
)
|
||||
|
||||
const (
|
||||
// maxTocSize is the maximum size of a blob that we will attempt to process.
|
||||
// It is used to prevent DoS attacks from layers that embed a very large TOC file.
|
||||
maxTocSize = (1 << 20) * 50
|
||||
)
|
||||
|
||||
var typesToTar = map[string]byte{
|
||||
TypeReg: tar.TypeReg,
|
||||
TypeLink: tar.TypeLink,
|
||||
|
|
@ -77,7 +83,7 @@ func readEstargzChunkedManifest(blobStream ImageSourceSeekable, blobSize int64,
|
|||
|
||||
size := int64(blobSize - footerSize - tocOffset)
|
||||
// set a reasonable limit
|
||||
if size > (1<<20)*50 {
|
||||
if size > maxTocSize {
|
||||
return nil, 0, errors.New("manifest too big")
|
||||
}
|
||||
|
||||
|
|
@ -106,7 +112,7 @@ func readEstargzChunkedManifest(blobStream ImageSourceSeekable, blobSize int64,
|
|||
return err
|
||||
}
|
||||
// set a reasonable limit
|
||||
if header.Size > (1<<20)*50 {
|
||||
if header.Size > maxTocSize {
|
||||
return errors.New("manifest too big")
|
||||
}
|
||||
|
||||
|
|
@ -166,10 +172,10 @@ func readZstdChunkedManifest(blobStream ImageSourceSeekable, tocDigest digest.Di
|
|||
}
|
||||
|
||||
// set a reasonable limit
|
||||
if manifestChunk.Length > (1<<20)*50 {
|
||||
if manifestChunk.Length > maxTocSize {
|
||||
return nil, nil, nil, 0, errors.New("manifest too big")
|
||||
}
|
||||
if manifestLengthUncompressed > (1<<20)*50 {
|
||||
if manifestLengthUncompressed > maxTocSize {
|
||||
return nil, nil, nil, 0, errors.New("manifest too big")
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -128,7 +128,11 @@ func TestGetBlobAtWithErrors(t *testing.T) {
|
|||
|
||||
is := &mockImageSource{streams: streams, errors: errorsC}
|
||||
|
||||
resultChan, err := getBlobAt(is)
|
||||
chunks := []ImageSourceChunk{
|
||||
{Offset: 0, Length: 1},
|
||||
{Offset: 1, Length: 1},
|
||||
}
|
||||
resultChan, err := getBlobAt(is, chunks...)
|
||||
require.NoError(t, err)
|
||||
|
||||
expectedErrors := []string{"error1", "error2"}
|
||||
|
|
@ -149,13 +153,18 @@ func TestGetBlobAtMixedStreamsAndErrors(t *testing.T) {
|
|||
errorsC := make(chan error, 1)
|
||||
|
||||
streams <- mockReadCloserFromContent("stream1")
|
||||
streams <- mockReadCloserFromContent("stream2")
|
||||
errorsC <- errors.New("error1")
|
||||
close(streams)
|
||||
close(errorsC)
|
||||
|
||||
is := &mockImageSource{streams: streams, errors: errorsC}
|
||||
|
||||
resultChan, err := getBlobAt(is)
|
||||
chunks := []ImageSourceChunk{
|
||||
{Offset: 0, Length: 1},
|
||||
{Offset: 1, Length: 1},
|
||||
}
|
||||
resultChan, err := getBlobAt(is, chunks...)
|
||||
require.NoError(t, err)
|
||||
|
||||
var receivedStreams int
|
||||
|
|
@ -167,6 +176,6 @@ func TestGetBlobAtMixedStreamsAndErrors(t *testing.T) {
|
|||
receivedStreams++
|
||||
}
|
||||
}
|
||||
assert.Equal(t, 0, receivedStreams)
|
||||
assert.Equal(t, 2, receivedErrors)
|
||||
assert.Equal(t, 2, receivedStreams)
|
||||
assert.Equal(t, 1, receivedErrors)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue