fixed some bugs related to additional linkname corner cases (#210)

pull/211/head
Andrew LeFevre 4 years ago committed by GitHub
parent 835f4aadf3
commit 2d720ae155
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -609,6 +609,9 @@ func (tf *transformer) handleDirectives(comments []string) {
if pkg == "runtime" && strings.HasPrefix(name, "cgo") { if pkg == "runtime" && strings.HasPrefix(name, "cgo") {
continue // ignore cgo-generated linknames continue // ignore cgo-generated linknames
} }
if !isPrivate(pkg) {
continue // ignore non-private symbols
}
listedPkg, ok := buildInfo.imports[pkg] listedPkg, ok := buildInfo.imports[pkg]
if !ok { if !ok {
continue // probably a made up symbol name continue // probably a made up symbol name
@ -620,9 +623,14 @@ func (tf *transformer) handleDirectives(comments []string) {
// The name exists and was obfuscated; replace the // The name exists and was obfuscated; replace the
// comment with the obfuscated name. // comment with the obfuscated name.
obfName := hashWith(listedPkg.actionID, name) if token.IsExported(name) {
fields[2] = pkg + "." + obfName obfName := hashWith(listedPkg.actionID, name)
comments[i] = strings.Join(fields, " ") fields[2] = pkg + "." + obfName
comments[i] = strings.Join(fields, " ")
} else if obfName, ok := tf.privateNameMap[fields[2]]; ok {
fields[2] = pkg + "." + obfName
comments[i] = strings.Join(fields, " ")
}
} }
} }

@ -20,6 +20,7 @@ go 1.15
package main package main
import ( import (
_ "os/exec"
_ "strings" _ "strings"
_ "unsafe" _ "unsafe"
@ -30,6 +31,10 @@ import (
//go:linkname byteIndex strings.IndexByte //go:linkname byteIndex strings.IndexByte
func byteIndex(s string, c byte) int func byteIndex(s string, c byte) int
// A linkname to an external non-garbled non-exported func.
//go:linkname interfaceEqual os/exec.interfaceEqual
func interfaceEqual(a, b interface{}) bool
// A linkname to an external garbled func. // A linkname to an external garbled func.
//go:linkname garbledFunc test/main/imported.GarbledFuncImpl //go:linkname garbledFunc test/main/imported.GarbledFuncImpl
func garbledFunc() string func garbledFunc() string
@ -40,6 +45,7 @@ func renamedFunc() string
func main() { func main() {
println(byteIndex("01234", '3')) println(byteIndex("01234", '3'))
println(interfaceEqual("Sephiroth", 7))
println(garbledFunc()) println(garbledFunc())
println(renamedFunc()) println(renamedFunc())
} }
@ -60,5 +66,6 @@ func renamedFunc() string {
} }
-- main.stderr -- -- main.stderr --
3 3
false
garbled func garbled func
renamed func renamed func

Loading…
Cancel
Save