-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/go: adding a new file by -overlay
didn't work in Go 1.24, though this worked in Go 1.23
#71783
Comments
On macOS and Linux, both Go 1.24 and 1.23 didn't work as expected:
EDIT: My current guess is that replacing files in module cache might cause some troubles. |
CC @matloob per #71075 (comment) |
ping @matloob ? |
(We had a US Holiday yesterday) Yes, we don't respect overlays in the modcache. We should explicitly reject those cases. I'll send a CL to explicitly reject them. But that CL wouldn't meet the bar to be backported, so it would show up in Go 1.25. |
Thank you for replying!
|
It was suggested in #69887 (comment) that That and, |
Just FYI, my current
|
@hajimehoshi To answer the easier question first, yes On the other hand the module cache is intended to be read-only (we write the files read-only on disk) so the Go command assumes that it isn't modified, even by an overlay. @jakebailey I think we would still be able to find a solution even if we don't use overlays. For instance, we might be able to use replace directives. We would plan to have gopls filter out the files provided to the overlay to avoid a crash. See #71075 (comment) @hajimehoshi I think replace directives are the best option for replacing code that's in the module cache. Would they work for your use cases? For the ebitengine NDA use case, could you replace the module containing the NDA'd code when doing the build in an environment where the implementation is available? You could perhaps split the specific interfaces into their own module and replace only that module to avoid having to replace a big module. If it becomes necessary we can reverse course on this: for example, we could disable the module index when an overlay modifies the module cache. That should fix the immediate problems. But it may create other ones if we start breaking the assumption that the module index is immutable, so I think we should avoid that option if we can. |
@matloob Thanks! I'm relieved that
It is possible, but this means that a user has to modify their
This might work, but I don't want to expose the internal details as an exposed interface. Another concern is that the interface content can be changed anytime.
That makes sense. Alright, I am convinced that |
Change https://go.dev/cl/650475 mentions this issue: |
The go command assumes that GOMODCACHE is immutable. As an example of one place the assumption is made, the modindex won't stat the files in GOMODCACHE when getting the cache key for the index entry and just uses the path of the module in the modcache (basically the module's name and version). Explicitly reject overlays affecting GOMODCACHE to avoid surprising and incorrect behavior. For #71783 For #71075 Change-Id: I21dd5d39d71037de473b09ac8482a1867864e11f Reviewed-on: https://go-review.googlesource.com/c/go/+/650475 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com> Reviewed-by: Robert Findley <rfindley@google.com>
I've created my own helper library to overwrite files in external libraries: https://github.com/hajimehoshi/uwagaki |
Go version
go version go1.24.0 windows/amd64
Output of
go env
in your module/workspace:What did you do?
Run this:
github.com/hajimehoshi/overlaytest
does these things:Foo
defined ininternal/foo/foo.go
. This function just outputs 'Original' by default.go list -f {{.Dir}} github.com/hajimehoshi/overlaytest/internal/foo
to get the local path for the package.internal/foo/bar.go
to replace the output message to 'Replaced'.What did you see happen?
Both output 'Original'.
What did you expect to see?
First go-run should output 'Original' and the second should output 'Replaced'
Go 1.23.6 worked as expected (note that you might have to modify go.mod's Go version).
The text was updated successfully, but these errors were encountered: