Fix linkname directives with dots in importpath (#407)

Obfuscating newName arguments of linkname directives
with dots in the importpath didn't work before.

We had a test which covers this,
but the corresponding package wasn't actually obfuscated.
pull/409/head
lu4p 4 years ago committed by GitHub
parent 88f238e558
commit 3d19605782
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -731,15 +731,8 @@ func (tf *transformer) handleDirectives(comments []*ast.CommentGroup) {
// If the package path has multiple dots, split on the
// last one.
var pkgPath, name string
if dotCnt == 1 {
target := strings.Split(newName, ".")
pkgPath, name = target[0], target[1]
} else {
lastDotIdx := strings.LastIndex(newName, ".")
target := strings.Split(newName[lastDotIdx-1:], ".")
pkgPath, name = target[0], target[1]
}
lastDotIdx := strings.LastIndex(newName, ".")
pkgPath, name := newName[:lastDotIdx], newName[lastDotIdx+1:]
lpkg, err := listPackage(pkgPath)
if err != nil {

@ -1,4 +1,4 @@
env GOPRIVATE=test/main
env GOPRIVATE=test/main,big.chungus/meme
garble build
exec ./main

Loading…
Cancel
Save