-
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
x/tools/gopls/internal/cache/methodsets: "missing object path for %s" bug in indexBuilder.build #70418
Comments
[Info - 7:38:35 PM] 2024/11/17 19:38:35 Created View (#1)
directory=/Users/jacksoom/programer/pell/chain
view_type="GoMod"
root_dir="file:///Users/jacksoom/programer/pell/chain"
go_version="go version go1.23.2 darwin/arm64"
build_flags=[]
env={GOOS:darwin GOARCH:arm64 GOCACHE:/Users/jacksoom/Library/Caches/go-build GOMODCACHE:/Users/jacksoom/programer/golang/pkg/mod GOPATH:/Users/jacksoom/programer/golang GOPRIVATE:github.com/0xPellNetwork/* GOFLAGS: GO111MODULE:on GOTOOLCHAIN:auto GOROOT:/Users/jacksoom/.goenv/versions/1.23.2 GoVersion:23 GoVersionOutput:go version go1.23.2 darwin/arm64
ExplicitGOWORK: EffectiveGOPACKAGESDRIVER:}
env_overlay=[]
[Info - 7:38:36 PM] 2024/11/17 19:38:36 go/packages.Load golang/vscode-go#1
view_id="1"
snapshot=0
directory=/Users/jacksoom/programer/pell/chain
query=[/Users/jacksoom/programer/pell/chain/... builtin]
packages=261
duration=891.908667ms
panic: can't find path for func (github.com/cosmos/cosmos-sdk/x/authz.Authorization).ValidateBasic() error in github.com/cosmos/cosmos-sdk/x/authz |
gopls(server) output log |
go version go1.23.2 darwin/arm64 |
The crash appears to be specific to this gopls version. After switching to version 0.16.2. works fine right now. |
Thank you! We will fix this for the next prerelease. Very much appreciate the report. |
@jacksoom could you please possibly include the full panicking stack? The panic message alone is not necessarily easy to track down. Edit: see #70418 (comment); --@adonovan |
@adonovan the panic here looks like the likely culprit: I can certainly imagine that some combination of aliases, generics, embedding, and importing could result in an interface method that has no objectpath. However, in that case the question is why didn't this reproduce with v0.16.2, as I don't think this logic has changed recently. |
Well spotted. We should probably always augment panic(err) calls with a distinct string to make these needles easier to find in the haystack. |
This stack
|
This is a real mystery. The error is:
and the source is: package authz // "github.com/cosmos/cosmos-sdk/x/authz"
import ( ... )
type Authorization interface {
proto.Message
MsgTypeURL() string
Accept(ctx context.Context, msg sdk.Msg) (authz.AcceptResponse, error)
ValidateBasic() error // <-- object of interest
} Clearly objectpath.Encoder.For is getting all the way to the end without finding this method (types.Func) in the "step 4" search, yet there's nothing obviously tricky about this case. The pointer comparison in the interface method check raises the question about whether Origin is needed in case of generics, but there are no generics here: case *types.Interface:
for i := 0; i < T.NumMethods(); i++ {
m := T.Method(i)
if f.seenMethods[m] {
return nil
}
path2 := appendOpArg(path, opMethod, i)
if m == f.obj { // sound?
return path2 // found interface method
} I am unable to reproduce the crash locally while navigating this source tree. |
Change https://go.dev/cl/631778 mentions this issue: |
We can't reproduce the crash observed in golang/go#70418, where a method on a package level type name has no object path. In any case, downgrade this crash to a bug report, and refine the report to clarify some conditions potentially related to the crash. For golang/go#70418 Change-Id: If6ab38e2189accf881e84da568525e2228c757fb Reviewed-on: https://go-review.googlesource.com/c/tools/+/631778 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Alan Donovan <[email protected]>
This stack
|
The latest stack indicates a refinement: a local type without type args or params, most likely a local named type. |
This stack
|
This stack
|
@jacksoom why did you close this? |
This stack
|
Issue created by stacks.
First stack is here.
gopls version: v0.17.0-pre.2/go1.23.2
gopls flags:
update flags: proxy
extension version: 0.42.1
environment: Cursor darwin
initialization error: undefined
issue timestamp: Sat, 16 Nov 2024 15:11:16 GMT
restart history:
Sat, 16 Nov 2024 15:10:59 GMT: activation (enabled: true)
gopls stats -anon
{ "DirStats": { "Files": 5774, "TestdataFiles": 216, "GoFiles": 960, "ModFiles": 1, "Dirs": 516 }, "GOARCH": "arm64", "GOOS": "darwin", "GOPACKAGESDRIVER": "", "GOPLSCACHE": "", "GoVersion": "go1.23.2", "GoplsVersion": "v0.17.0-pre.2", "InitialWorkspaceLoadDuration": "1.603257166s", "MemStats": { "HeapAlloc": 318890328, "HeapInUse": 434987008, "TotalAlloc": 1358687472 }, "WorkspaceStats": { "Files": { "Total": 9784, "Largest": 4950165, "Errs": 0 }, "Views": [ { "GoCommandVersion": "go1.23.2", "AllPackages": { "Packages": 2191, "LargestPackage": 159, "CompiledGoFiles": 10309, "Modules": 322 }, "WorkspacePackages": { "Packages": 199, "LargestPackage": 54, "CompiledGoFiles": 1185, "Modules": 1 }, "Diagnostics": 0 } ] } }The text was updated successfully, but these errors were encountered: