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

x/tools/gopls/internal/cache/methodsets: "missing object path for %s" bug in indexBuilder.build #70418

Open
jacksoom opened this issue Nov 16, 2024 · 18 comments
Assignees
Labels
gopls/telemetry-wins gopls Issues related to the Go language server, gopls. Tools This label describes issues relating to any tools in the x/tools repository.
Milestone

Comments

@jacksoom
Copy link

jacksoom commented Nov 16, 2024

#!stacks
"runtime.gopanic" && "methodsets.(*indexBuilder).build.func2:+12" ||
 "bug.Reportf" && "(*indexBuilder).build.func2.1:+1" || // off-by-one line due to telemetry bug
 "bug.Reportf" && "(*indexBuilder).build.func2:+32"

Issue created by stacks.

		// Instantiations of generic methods don't have an
		// object path, so we use the generic.
		if p, err := objectpathFor(method.Origin()); err != nil {
			panic(err) // can't happen for a method of a package-level type
		} else {
			m.ObjectPath = b.string(string(p))
		}

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 } ] } }
Dups: yJIbcA 9nLJcw B-EmyA re0xQw VFXJYg MDN9RQ yO6-PA
@jacksoom jacksoom reopened this Nov 17, 2024
@jacksoom
Copy link
Author

[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

@jacksoom
Copy link
Author

gopls(server) output log

@jacksoom
Copy link
Author

go version go1.23.2 darwin/arm64
gopls version
golang.org/x/tools/gopls v0.17.0-pre.2

@jacksoom
Copy link
Author

The crash appears to be specific to this gopls version. After switching to version 0.16.2. works fine right now.

@findleyr
Copy link
Member

Thank you! We will fix this for the next prerelease. Very much appreciate the report.

@findleyr
Copy link
Member

findleyr commented Nov 18, 2024

@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

@findleyr findleyr changed the title gopls: automated issue report (crash) x/tools/gopls: panic "can't find path for func" Nov 18, 2024
@findleyr findleyr transferred this issue from golang/vscode-go Nov 18, 2024
@findleyr findleyr added this to the gopls/v0.17.0 milestone Nov 18, 2024
@gopherbot gopherbot added Tools This label describes issues relating to any tools in the x/tools repository. gopls Issues related to the Go language server, gopls. labels Nov 18, 2024
@findleyr
Copy link
Member

findleyr commented Nov 18, 2024

@adonovan the panic here looks like the likely culprit:
https://cs.opensource.google/go/x/tools/+/master:gopls/internal/cache/methodsets/methodsets.go;l=232;drc=1d5e334177335fd58b8eee6f809b3589bf7371aa

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.

@adonovan
Copy link
Member

the panic here looks like the likely culprit:

Well spotted. We should probably always augment panic(err) calls with a distinct string to make these needles easier to find in the haystack.

@adonovan adonovan changed the title x/tools/gopls: panic "can't find path for func" x/tools/gopls/internal/cache/methodsets: "can't find path for func" panic in indexBuilder.build (no object path for method) Nov 18, 2024
@findleyr findleyr assigned findleyr and unassigned findleyr Nov 19, 2024
@adonovan
Copy link
Member

adonovan commented Nov 21, 2024

This is a real mystery. The error is:

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

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.

@findleyr findleyr assigned findleyr and unassigned adonovan Nov 25, 2024
@gopherbot
Copy link
Contributor

Change https://go.dev/cl/631778 mentions this issue: gopls/internal/cache/methodsets: refine crash for missing object path

@findleyr findleyr modified the milestones: gopls/v0.17.0, gopls/v0.18.0 Nov 26, 2024
gopherbot pushed a commit to golang/tools that referenced this issue Nov 26, 2024
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]>
@adonovan
Copy link
Member

The latest stack indicates a refinement: a local type without type args or params, most likely a local named type.

@findleyr findleyr modified the milestones: gopls/v0.18.0, gopls/v0.19.0 Feb 11, 2025
@adonovan adonovan changed the title x/tools/gopls/internal/cache/methodsets: "can't find path for func" panic in indexBuilder.build (no object path for method) x/tools/gopls/internal/cache/methodsets: "missing object path for %s" bug in indexBuilder.build Feb 11, 2025
@findleyr
Copy link
Member

@jacksoom why did you close this?

@findleyr findleyr reopened this Feb 20, 2025
@adonovan
Copy link
Member

This stack MDN9RQ was reported by telemetry:

golang.org/x/tools/[email protected] go1.23.2 darwin/amd64 vscode (1)

This stack yO6-PA was reported by telemetry:

golang.org/x/tools/[email protected] go1.23.7 darwin/amd64 vscode (1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
gopls/telemetry-wins gopls Issues related to the Go language server, gopls. Tools This label describes issues relating to any tools in the x/tools repository.
Projects
None yet
Development

No branches or pull requests

4 participants