Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

archive/zip: Zip64 tests fail/panic on 32-bit architectures #29555

Closed
4a6f656c opened this issue Jan 4, 2019 · 3 comments
Closed

archive/zip: Zip64 tests fail/panic on 32-bit architectures #29555

4a6f656c opened this issue Jan 4, 2019 · 3 comments
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.

Comments

@4a6f656c
Copy link
Contributor

4a6f656c commented Jan 4, 2019

The TestZip64 fails and the TestZip64EdgeCase panics when run on openbsd/386 and openbsd/arm (and I would hazard a guess that they fail on any 32-bit architecture) - the output from go test -test.v archive/zip is:

...
=== CONT  TestZip64EdgeCase
--- FAIL: TestZip64 (12.82s)
    zip_test.go:574: read: unexpected EOF
=== CONT  TestZip64ManyRecords/uint16max-1_NoZip64
--- FAIL: TestZip64EdgeCase (12.83s)
panic: runtime error: slice bounds out of range [recovered]
        panic: runtime error: slice bounds out of range

goroutine 274 [running]:
testing.tRunner.func1(0x3ac125a0)
        /home/joel/src/go/src/testing/testing.go:827 +0x308
panic(0x815d200, 0x8272ae0)
        /home/joel/src/go/src/runtime/panic.go:522 +0x162
archive/zip.(*rleBuffer).ReadAt(0x3b39c040, 0x3b3a8000, 0x400, 0x400, 0x26, 0x0, 0x1f, 0x81a16a7, 0x0)
        /home/joel/src/go/src/archive/zip/zip_test.go:194 +0x20a
io.(*SectionReader).Read(0x3ad7e0a0, 0x3b3a8000, 0x400, 0x400, 0x8051813, 0x3ac0e3d8, 0x8)
        /home/joel/src/go/src/io/io.go:475 +0xb7
archive/zip.(*checksumReader).Read(0x3acee090, 0x3b3a8000, 0x400, 0x400, 0x804fafd, 0x816d440, 0x804fb63)
        /home/joel/src/go/src/archive/zip/reader.go:198 +0x4a
io.ReadAtLeast(0x171cb098, 0x3acee090, 0x3b3a8000, 0x400, 0x400, 0x400, 0x0, 0x3ac12280, 0x40000000)
        /home/joel/src/go/src/io/io.go:310 +0x6e
io.ReadFull(...)
        /home/joel/src/go/src/io/io.go:329
archive/zip.testZip64(0x81a6ae0, 0x3ac125a0, 0xfffffffb, 0x0, 0x3ac106c0)
        /home/joel/src/go/src/archive/zip/zip_test.go:572 +0x865
archive/zip.TestZip64EdgeCase(0x3ac125a0)
        /home/joel/src/go/src/archive/zip/zip_test.go:264 +0x52
testing.tRunner(0x3ac125a0, 0x81846b8)
        /home/joel/src/go/src/testing/testing.go:862 +0x91
created by testing.(*T).Run
        /home/joel/src/go/src/testing/testing.go:913 +0x2ac
FAIL    archive/zip     13.711s

I would suspect an int type being the cause (wraparound with int32 vs int64), however I've not had time to dig further (it does appear that it is likely just the test code that is failing, not the actual archive/zip code itself...).

@katiehockman katiehockman added OS-OpenBSD NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one. labels Jan 4, 2019
@katiehockman
Copy link
Contributor

/cc @dsnet

@dsnet dsnet removed the OS-OpenBSD label Jan 4, 2019
@dsnet
Copy link
Member

dsnet commented Jan 4, 2019

Reproduced on Linux.

@gopherbot
Copy link

Change https://golang.org/cl/156399 mentions this issue: archive/zip: fix casting overflow on 32-bit arch

@golang golang locked and limited conversation to collaborators Jan 7, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
FrozenDueToAge NeedsInvestigation Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Projects
None yet
Development

No branches or pull requests

4 participants