-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Closed
Labels
FrozenDueToAgeNeedsDecisionFeedback is required from experts, contributors, and/or the community before a change can be made.Feedback is required from experts, contributors, and/or the community before a change can be made.
Milestone
Description
What version of Go are you using (go version
)?
$ go version go version go1.17.1 linux/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="on" GOARCH="amd64" GOBIN="/home/ericchiang/bin" GOCACHE="/home/ericchiang/.cache/go-build" GOENV="/home/ericchiang/.config/go/env" GOEXE="" GOEXPERIMENT="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/ericchiang/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/ericchiang" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/local/go" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/local/go/pkg/tool/linux_amd64" GOVCS="" GOVERSION="go1.17.1" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="/dev/null" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build2858401830=/tmp/go-build -gno-record-gcc-switches"
What did you do?
We had a report of a JAR file where fs.WalkDir hit an error while walking the archive google/log4jscanner#12
JAR can be found here: https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-api/3.141.59
Reproducer (https://go.dev/play/p/-yKYcEqgotT):
package main
import (
"archive/zip"
"bytes"
"io/fs"
"log"
"time"
)
func main() {
h := &zip.FileHeader{Name: "./foo", Modified: time.Now()}
h.SetMode(fs.ModeDir | 0755)
b := &bytes.Buffer{}
zw := zip.NewWriter(b)
if _, err := zw.CreateHeader(h); err != nil {
log.Fatalf("create header: %v", err)
}
if err := zw.Close(); err != nil {
log.Fatalf("closing zip writier: %v", err)
}
r := bytes.NewReader(b.Bytes())
zr, err := zip.NewReader(r, r.Size())
if err != nil {
log.Fatalf("create new reader: %v", err)
}
// WalkDir loops forever.
err = fs.WalkDir(zr, ".", func(path string, d fs.DirEntry, err error) error {
return err
})
if err != nil {
log.Fatalf("walk dir: %v", err)
}
}
What did you expect to see?
No error
What did you see instead?
2009/11/10 23:00:00 walk dir: readdir foo: not implemented
Metadata
Metadata
Assignees
Labels
FrozenDueToAgeNeedsDecisionFeedback is required from experts, contributors, and/or the community before a change can be made.Feedback is required from experts, contributors, and/or the community before a change can be made.