diff options
| author | Cherry Mui <cherryyz@google.com> | 2023-08-18 11:10:23 -0400 |
|---|---|---|
| committer | Cherry Mui <cherryyz@google.com> | 2023-08-18 15:53:47 +0000 |
| commit | b65e34f03814889f0edd3ddd9778864762511443 (patch) | |
| tree | 3d7ad001b1fb162effb8a716931d0909750233e8 /src/cmd/cgo/internal/testplugin/testdata | |
| parent | d63c88d6959f2081bcaf4026306ca8878e8f335a (diff) | |
| download | go-b65e34f03814889f0edd3ddd9778864762511443.tar.xz | |
cmd/link: don't mangle string symbol names
String symbol names could contain weird characters as we put the
string literal into the symbol name. So it may appear to need
mangling. However, as string symbols are grouped into a single
"go:string.*" symbol, the individual symbol names actually don't
matter. So don't mangle them.
Also make the mangling code more defensive in case of weird
symbol names.
Fixes #62098.
Change-Id: I533012567a9fffab69debda934f426421c7abb04
Reviewed-on: https://go-review.googlesource.com/c/go/+/520856
Reviewed-by: Than McIntosh <thanm@google.com>
Run-TryBot: Cherry Mui <cherryyz@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Diffstat (limited to 'src/cmd/cgo/internal/testplugin/testdata')
| -rw-r--r-- | src/cmd/cgo/internal/testplugin/testdata/mangle/plugin.go (renamed from src/cmd/cgo/internal/testplugin/testdata/generic/plugin.go) | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/src/cmd/cgo/internal/testplugin/testdata/generic/plugin.go b/src/cmd/cgo/internal/testplugin/testdata/mangle/plugin.go index 6d3835a7ec..e1ccb70672 100644 --- a/src/cmd/cgo/internal/testplugin/testdata/generic/plugin.go +++ b/src/cmd/cgo/internal/testplugin/testdata/mangle/plugin.go @@ -2,21 +2,37 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Instantiated function name may contain weird characters -// that confuse the external linker, so it needs to be -// mangled. +// Test cases for symbol name mangling. package main -//go:noinline -func F[T any]() {} +import ( + "fmt" + "strings" +) +// Issue 58800: +// Instantiated function name may contain weird characters +// that confuse the external linker, so it needs to be +// mangled. type S struct { X int `parser:"|@@)"` } +//go:noinline +func F[T any]() {} + func P() { F[S]() } +// Issue 62098: the name mangling code doesn't handle some string +// symbols correctly. +func G(id string) error { + if strings.ContainsAny(id, "&$@;/:+,?\\{^}%`]\">[~<#|") { + return fmt.Errorf("invalid") + } + return nil +} + func main() {} |
