aboutsummaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
authorCherry Mui <cherryyz@google.com>2024-05-14 22:34:58 -0400
committerCherry Mui <cherryyz@google.com>2024-05-15 19:27:25 +0000
commit849770dec9191475ffed23f0d0985d8222c51e53 (patch)
treed2e1c10887c3d9f4044901defaff5c5a78044511 /src/cmd
parentbf0b605dfbc36b3555eef3315b15facca1c08bdb (diff)
downloadgo-849770dec9191475ffed23f0d0985d8222c51e53.tar.gz
go-849770dec9191475ffed23f0d0985d8222c51e53.zip
cmd/compile: disallow linkname referring to instantiations
Linknaming an instantiated generic symbol isn't particularly useful: it doesn't guarantee the instantiation exists, and the instantiated symbol name may be subject to change. Checked with a large code corpus, currently there is no occurrance of linkname to an instantiated generic symbol (or symbol with a bracket in its name). This also suggests that it is not very useful. Linkname is already an unsafe mechanism. We don't need to allow it to do more unsafe things without justification. Change-Id: Ifaa20c98166b28a9d7dc3290c013c2b5bb7682e7 Reviewed-on: https://go-review.googlesource.com/c/go/+/585458 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Than McIntosh <thanm@google.com>
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/compile/internal/noder/writer.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cmd/compile/internal/noder/writer.go b/src/cmd/compile/internal/noder/writer.go
index a48e193c5f..13706f9dd2 100644
--- a/src/cmd/compile/internal/noder/writer.go
+++ b/src/cmd/compile/internal/noder/writer.go
@@ -12,6 +12,7 @@ import (
"internal/buildcfg"
"internal/pkgbits"
"os"
+ "strings"
"cmd/compile/internal/base"
"cmd/compile/internal/ir"
@@ -2610,6 +2611,10 @@ func (pw *pkgWriter) collectDecls(noders []*noder) {
pw.errorf(l.pos, "//go:linkname only allowed in Go files that import \"unsafe\"")
continue
}
+ if strings.Contains(l.remote, "[") && strings.Contains(l.remote, "]") {
+ pw.errorf(l.pos, "//go:linkname reference of an instantiation is not allowed")
+ continue
+ }
switch obj := pw.curpkg.Scope().Lookup(l.local).(type) {
case *types2.Func, *types2.Var: